diff options
author | Giuseppe Bilotta <giuseppe.bilotta@gmail.com> | 2007-04-15 01:44:40 +0000 |
---|---|---|
committer | Giuseppe Bilotta <giuseppe.bilotta@gmail.com> | 2007-04-15 01:44:40 +0000 |
commit | 5a1e2b5d174ba11073ff122530b29488185366c0 (patch) | |
tree | 2ca5fb4a6e7ddbf782366bc8361da8da273ef6ef /data/rbot/plugins/url.rb | |
parent | 52f4457cf8aad0de59b7bd83e86b6cab228a45d6 (diff) |
HttpUtil: fix gunzipping with partial content; and debug response in url plugin earlier
Diffstat (limited to 'data/rbot/plugins/url.rb')
-rw-r--r-- | data/rbot/plugins/url.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/data/rbot/plugins/url.rb b/data/rbot/plugins/url.rb index 8a05cafa..10cc419a 100644 --- a/data/rbot/plugins/url.rb +++ b/data/rbot/plugins/url.rb @@ -52,6 +52,8 @@ class UrlPlugin < Plugin case resp when Net::HTTPSuccess + debug resp.to_hash + if resp['content-type'] =~ /^text\/|(?:x|ht)ml/ # The page is text or HTML, so we can try finding a title and, if # requested, the first par. @@ -76,8 +78,6 @@ class UrlPlugin < Plugin # if nothing was found, provide more basic info, as for non-html pages end - debug resp.to_hash.inspect - enc = resp['content-encoding'] extra << ", #{Bold}encoding#{Bold}: #{enc}" if enc |