src/strip.vala
authorAlan Knowles <alan@roojs.com>
Wed, 9 May 2018 10:08:07 +0000 (18:08 +0800)
committerAlan Knowles <alan@roojs.com>
Wed, 9 May 2018 10:08:07 +0000 (18:08 +0800)
src/strip.vala

index 0c6480c..f103081 100644 (file)
@@ -754,14 +754,14 @@ public class Strip : GLib.Object {
                oldest = oldest.add_months(-1 * StripApplication.opt_age_oldest);
                var rtspan = mailtime.difference(oldest) / GLib.TimeSpan.DAY;
 
-               if (rtspan < 0) {
+               if (rtspan > 0) {
                        GLib.debug("skip(2) file is %d days older than %d months", (int)rtspan, StripApplication.opt_age_oldest);
                        return;
                }
                var newest = new  DateTime.now_local();
                newest = oldest.add_months(-1 * StripApplication.opt_age_newest);
                rtspan = mailtime.difference(newest) / GLib.TimeSpan.DAY;
-               if (rtspan > 0) {
+               if (rtspan < 0) {
                        GLib.debug("skip(2) file is %d days newer than %d months : %s", (int)rtspan, StripApplication.opt_age_newest,
                                mailtime.format("%Y-%m-%d %H:%M:%S"));
                        return;