diff options
author | Patrick J Cherry <patrick@bytemark.co.uk> | 2011-06-16 18:23:52 +0100 |
---|---|---|
committer | Patrick J Cherry <patrick@bytemark.co.uk> | 2011-06-16 18:23:52 +0100 |
commit | f6d9144af81f2078567691614fa7831c1a116fdf (patch) | |
tree | 8dbd6f49c518e090e1b7da18cb6ebc2c70113f7a /lib/mauve/notifier.rb | |
parent | 4ca1b2c8db777cd1e389a227072b1cd108e23d05 (diff) |
Fixed up date handling in the xmpp/email template
Changed basic notification logic in Alert.
Diffstat (limited to 'lib/mauve/notifier.rb')
-rw-r--r-- | lib/mauve/notifier.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/mauve/notifier.rb b/lib/mauve/notifier.rb index ce8c2b0..5c0e5a7 100644 --- a/lib/mauve/notifier.rb +++ b/lib/mauve/notifier.rb @@ -25,7 +25,7 @@ module Mauve logger.debug("Notifier buffer is #{sz} in length") - (sz > 10 ? 10 : sz).times do + (sz > 50 ? 50 : sz).times do person, level, alert = Server.notification_pop begin person.do_send_alert(level, alert) |