diff options
author | Patrick J Cherry <patrick@bytemark.co.uk> | 2011-09-06 16:01:08 +0100 |
---|---|---|
committer | Patrick J Cherry <patrick@bytemark.co.uk> | 2011-09-06 16:01:08 +0100 |
commit | dfd1254dcb524adec0419ba1a84f1f4817f90d88 (patch) | |
tree | 84d24e232aa3f2ca14174e1a0c32cef043587964 | |
parent | 3eb0e2921d70258f0935ae88896f2267f0494afb (diff) |
Fixed RangeError bug.
-rw-r--r-- | debian/changelog | 2 | ||||
-rw-r--r-- | lib/mauve/notifiers/xmpp.rb | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/debian/changelog b/debian/changelog index 67852cc..88c6d19 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,4 +1,4 @@ -mauvealert (3.5.6) lucid; urgency=low +mauvealert (3.5.6) stable; urgency=low * XMPP interface now saves note. diff --git a/lib/mauve/notifiers/xmpp.rb b/lib/mauve/notifiers/xmpp.rb index faeefb0..9cc5ab5 100644 --- a/lib/mauve/notifiers/xmpp.rb +++ b/lib/mauve/notifiers/xmpp.rb @@ -563,7 +563,7 @@ EOF begin ack_until = Time.now.in_x_hours(n_hours, type_hours) - rescue => RangeError + rescue RangeError return "I'm sorry, you tried to acknowedge for far too long, and my buffers overflowed!" end |