diff options
author | Giuseppe Bilotta <giuseppe.bilotta@gmail.com> | 2007-04-08 23:01:58 +0000 |
---|---|---|
committer | Giuseppe Bilotta <giuseppe.bilotta@gmail.com> | 2007-04-08 23:01:58 +0000 |
commit | 759bedc3e1bd0bda4ae95c879c001949fb2b5760 (patch) | |
tree | 4d5368ea36b9aa9c2aef0e748fe63dd790bd52b5 | |
parent | 4772b0e5b1097ab8d77cfe6da21e93be7041cc4f (diff) |
rss plugin: overrule max lines, display all feeds
-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 8e157b86..885ac84d 100644 --- a/data/rbot/plugins/rss.rb +++ b/data/rbot/plugins/rss.rb @@ -463,7 +463,7 @@ class RSSFeedsPlugin < Plugin reply = "no feeds found"
reply << " matching #{wanted}" if wanted
end
- m.reply reply
+ m.reply reply, :max_lines => reply.length
end
def watched_rss(m, params)
|