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 /lib | |
parent | 3eb0e2921d70258f0935ae88896f2267f0494afb (diff) |
Fixed RangeError bug.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/mauve/notifiers/xmpp.rb | 2 |
1 files changed, 1 insertions, 1 deletions
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 |