aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--lib/mauve/alert_changed.rb2
-rw-r--r--lib/mauve/alert_group.rb3
2 files changed, 3 insertions, 2 deletions
diff --git a/lib/mauve/alert_changed.rb b/lib/mauve/alert_changed.rb
index 2b9dfe5..6925085 100644
--- a/lib/mauve/alert_changed.rb
+++ b/lib/mauve/alert_changed.rb
@@ -110,7 +110,7 @@ module Mauve
#
# Push this notifitcation onto the queue.
#
- Server.notification_push([alert, Time.now])
+ Server.notification_push([alert, self.remind_at])
end
#
diff --git a/lib/mauve/alert_group.rb b/lib/mauve/alert_group.rb
index 6126ed3..424ba88 100644
--- a/lib/mauve/alert_group.rb
+++ b/lib/mauve/alert_group.rb
@@ -239,7 +239,8 @@ module Mauve
this_reminder = AlertChanged.first_or_new(
:alert_id => alert.id,
:person => self.name,
- :remind_at.not => nil
+ :remind_at.not => nil,
+ :remind_at.gt => at
)
this_reminder.level = level.to_s