diff options
author | Giuseppe Bilotta <giuseppe.bilotta@gmail.com> | 2008-03-17 01:00:54 +0100 |
---|---|---|
committer | Giuseppe Bilotta <giuseppe.bilotta@gmail.com> | 2008-03-17 01:00:54 +0100 |
commit | 1722077126d2b9407f0811dbe7298b730cabf178 (patch) | |
tree | e7660bf67b7b22d3c180dde57296d43d9b17fcc4 /data/rbot/plugins/url.rb | |
parent | 1fddc1eb2dde85b5909b90c77656bee6eb500298 (diff) |
filters: HTML info extraction is now a filter
Diffstat (limited to 'data/rbot/plugins/url.rb')
-rw-r--r-- | data/rbot/plugins/url.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/data/rbot/plugins/url.rb b/data/rbot/plugins/url.rb index b048d3f0..d08c24e8 100644 --- a/data/rbot/plugins/url.rb +++ b/data/rbot/plugins/url.rb @@ -79,7 +79,7 @@ class UrlPlugin < Plugin begin debug "+ getting info for #{url.request_uri}" - info = Utils.get_html_info(url) + info = @bot.filter(:htmlinfo, url) debug info resp = info[:headers] |