From a0ab9e6d8022db22dd66412bb7a9087098e2faa2 Mon Sep 17 00:00:00 2001 From: Giuseppe Bilotta Date: Sun, 20 Aug 2006 21:53:02 +0000 Subject: Improve NOTICE and PRIVMSG robustness when target is not a simple channel or user --- lib/rbot/rfc2812.rb | 20 ++++++++++++++++++-- 1 file changed, 18 insertions(+), 2 deletions(-) (limited to 'lib/rbot/rfc2812.rb') diff --git a/lib/rbot/rfc2812.rb b/lib/rbot/rfc2812.rb index e56c76bc..26549539 100644 --- a/lib/rbot/rfc2812.rb +++ b/lib/rbot/rfc2812.rb @@ -1095,7 +1095,15 @@ module Irc # parse it yourself, or you can bind to 'MSG', 'PUBLIC', # etc and get it all nicely split up for you. - data[:target] = @server.user_or_channel(argv[0]) + begin + data[:target] = @server.user_or_channel(argv[0]) + rescue + # The previous may fail e.g. when the target is a server or something + # like that (e.g. $). In any of these cases, we just use the + # String as a target + # FIXME we probably want to explicitly check for the # $ + data[:target] = argv[0] + end data[:message] = argv[1] handle(:privmsg, data) @@ -1106,7 +1114,15 @@ module Irc handle(:msg, data) end when 'NOTICE' - data[:target] = @server.user_or_channel(argv[0]) + begin + data[:target] = @server.user_or_channel(argv[0]) + rescue + # The previous may fail e.g. when the target is a server or something + # like that (e.g. $). In any of these cases, we just use the + # String as a target + # FIXME we probably want to explicitly check for the # $ + data[:target] = argv[0] + end data[:message] = argv[1] case data[:source] when User -- cgit v1.2.3