diff options
Diffstat (limited to 'data')
-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
|