aboutsummaryrefslogtreecommitdiff
path: root/lib/mauve/notification.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/mauve/notification.rb')
-rw-r--r--lib/mauve/notification.rb5
1 files changed, 1 insertions, 4 deletions
diff --git a/lib/mauve/notification.rb b/lib/mauve/notification.rb
index 2f77a13..ed96f7e 100644
--- a/lib/mauve/notification.rb
+++ b/lib/mauve/notification.rb
@@ -44,10 +44,7 @@ module Mauve
plus_one_week = MauveTime.now + 604800 # ish
while offset < plus_one_week
offset += interval
- if DuringRunner.new(offset, @alert, &@during).now?
- @logger.debug("Found reminder time of #{offset}")
- return offset
- end
+ return offset if DuringRunner.new(offset, @alert, &@during).now?
end
@logger.info("Could not find a reminder time less than a week "+
"for #{@alert}.")