X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;f=data%2Frbot%2Fplugins%2Furban.rb;h=24c11dd7f3167272225e417ad3abcf88e4247bc6;hb=eec8d96e5c8f0c44148cc97a40b75a57e399cf6e;hp=d4aaef6296ac077d90253de350d15f8c534d9b88;hpb=240af168463621d216dad3fa9c0242d8aa6b853b;p=user%2Fhenk%2Fcode%2Fruby%2Frbot.git diff --git a/data/rbot/plugins/urban.rb b/data/rbot/plugins/urban.rb index d4aaef62..24c11dd7 100644 --- a/data/rbot/plugins/urban.rb +++ b/data/rbot/plugins/urban.rb @@ -17,6 +17,7 @@ class UrbanPlugin < Plugin u = URBAN + URI.escape(word) u += '&page=' + p.to_s if p > 1 s = @bot.httputil.get(u) + return m.reply "Couldn't get the urban dictionary definition for #{word}" if s.nil? notfound = s.match %r{
.*? isn't defined} @@ -47,6 +48,7 @@ class UrbanPlugin < Plugin resp = @bot.httputil.head('http://www.urbandictionary.com/random.php', :max_redir => -1, :cache => false) + return m.reply "Couldn't get a random urban dictionary word" if resp.nil? if resp.code == "302" && (loc = resp['location']) words = URI.unescape(loc.match(/define.php\?term=(.*)$/)[1]) rescue nil end