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

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