src/strip.vala
authorAlan Knowles <alan@roojs.com>
Wed, 9 May 2018 09:03:44 +0000 (17:03 +0800)
committerAlan Knowles <alan@roojs.com>
Wed, 9 May 2018 09:03:44 +0000 (17:03 +0800)
src/strip.vala

index e22ead1..c06d5b8 100644 (file)
@@ -729,8 +729,11 @@ public class Strip : GLib.Object {
                var oldest = new  DateTime.now_local();
                oldest.add_months(-1 * StripApplication.opt_min_age);
                var tspan = mailtime.difference(oldest) / GLib.TimeSpan.DAY;
-               GLib.debug("File is %d days older than %d", (int)tspan, StripApplication.opt_min_age);
-               
+
+               if (tspan < 0) {
+                       GLib.debug("skip file is %d days older than %d months", (int)tspan, StripApplication.opt_min_age);
+               }
+