diff options
author | Yaohan Chen <yaohan.chen@gmail.com> | 2008-05-27 21:13:53 -0400 |
---|---|---|
committer | Yaohan Chen <yaohan.chen@gmail.com> | 2008-05-27 21:16:26 -0400 |
commit | 973260ba7343198da6074913d3aaee58ad667358 (patch) | |
tree | e2b2346941004e92742e1269f843639fe192b68d /lib/rbot | |
parent | a41182b02b0b4f70e0a4e4ffff9c831207a87ba5 (diff) |
use m.thread.nil? rather than longer m.thread == nil
Diffstat (limited to 'lib/rbot')
-rw-r--r-- | lib/rbot/messagemapper.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/rbot/messagemapper.rb b/lib/rbot/messagemapper.rb index 2b9fc5e3..b97253a1 100644 --- a/lib/rbot/messagemapper.rb +++ b/lib/rbot/messagemapper.rb @@ -207,7 +207,7 @@ class Bot debug "checking auth for #{auth}" if m.bot.auth.allow?(auth, m.source, m.replyto) debug "template match found and auth'd: #{action.inspect} #{options.inspect}" - if m.thread || (m.thread == nil && tmpl.options[:thread] || tmpl.options[:threaded]) + if m.thread || (m.thread.nil? && tmpl.options[:thread] || tmpl.options[:threaded]) Thread.new do begin @parent.send(action, m, options) |