From: Alan Knowles Date: Thu, 24 May 2018 09:09:54 +0000 (+0800) Subject: src/strip.vala X-Git-Url: http://git.roojs.org/?p=app.mailtrimmer;a=commitdiff_plain;h=4703a9b955dbc5ea800de0c47f6563115748f106 src/strip.vala --- diff --git a/src/strip.vala b/src/strip.vala index f5f61e6..6cc604f 100644 --- a/src/strip.vala +++ b/src/strip.vala @@ -661,7 +661,7 @@ public class Strip : GLib.Object { oldest = oldest.add_months(-1 * StripApplication.opt_age_oldest); var tspan = mailtime.difference(oldest) / GLib.TimeSpan.DAY; - if (tspan > 0) { + if (tspan < 0) { GLib.debug("skip file is %d days older than %d months", (int)tspan, StripApplication.opt_age_oldest); return; }