diff options
author | Giuseppe Bilotta <giuseppe.bilotta@gmail.com> | 2006-07-24 21:44:05 +0000 |
---|---|---|
committer | Giuseppe Bilotta <giuseppe.bilotta@gmail.com> | 2006-07-24 21:44:05 +0000 |
commit | c2c4ebf2efc650cad3294e4e092a5beaa1c725a6 (patch) | |
tree | fd1e9b334ce765a544073041e1a074863cc47220 | |
parent | ecc7db68b3ede6792495f0777e7dd691952bda97 (diff) |
Fix problem reporting in rss plugin
-rw-r--r-- | data/rbot/plugins/rss.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/data/rbot/plugins/rss.rb b/data/rbot/plugins/rss.rb index 0e4fd6b9..bec03add 100644 --- a/data/rbot/plugins/rss.rb +++ b/data/rbot/plugins/rss.rb @@ -161,7 +161,7 @@ class RSSFeedsPlugin < Plugin end
def report_problem(report, e=nil, m=nil)
- if m && m.respond_to?(reply)
+ if m && m.respond_to?(:reply)
m.reply report
else
warning report
|