diff options
author | Giuseppe Bilotta <giuseppe.bilotta@gmail.com> | 2007-05-20 21:47:51 +0000 |
---|---|---|
committer | Giuseppe Bilotta <giuseppe.bilotta@gmail.com> | 2007-05-20 21:47:51 +0000 |
commit | b2bdb83bfcd123df4e8e0effa83b989a00d8ddce (patch) | |
tree | f710e24c3467ef9673ecd647843a5a248b73a18d /data | |
parent | d7be2632c61ddec26a7cf033f0b7cec91a1003fd (diff) |
Fix #151 in a different way.
Diffstat (limited to 'data')
-rw-r--r-- | data/rbot/plugins/rss.rb | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/data/rbot/plugins/rss.rb b/data/rbot/plugins/rss.rb index faf26049..ed379650 100644 --- a/data/rbot/plugins/rss.rb +++ b/data/rbot/plugins/rss.rb @@ -945,6 +945,9 @@ plugin.map 'rss replace :handle :url :type', plugin.map 'rss forcereplace :handle :url :type',
:action => 'forcereplace_rss',
:defaults => {:type => nil}
+plugin.map 'rss watch :handle [in :chan]',
+ :action => 'watch_rss',
+ :defaults => {:url => nil, :type => nil}
plugin.map 'rss watch :handle :url :type [in :chan]',
:action => 'watch_rss',
:defaults => {:url => nil, :type => nil}
|