diff options
author | Giuseppe Bilotta <giuseppe.bilotta@gmail.com> | 2008-02-27 01:06:09 +0100 |
---|---|---|
committer | Giuseppe Bilotta <giuseppe.bilotta@gmail.com> | 2008-02-27 01:06:09 +0100 |
commit | 5d2184f862fbad00a0be58ef4709b0e817343098 (patch) | |
tree | 654fc58f2e6121b42857ebc167552e6c4f68258a /data | |
parent | 4f8c7f7187e5627319f10206579df9164768d648 (diff) |
rss plugin: it's item, not idem
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 a07a7c37..d1e17593 100644 --- a/data/rbot/plugins/rss.rb +++ b/data/rbot/plugins/rss.rb @@ -892,7 +892,7 @@ class RSSFeedsPlugin < Plugin link = item.link.href rescue item.link.chomp rescue nil
- category = select_nonempty((item.category.content rescue nil), (idem.dc_subject rescue nil))
+ category = select_nonempty((item.category.content rescue nil), (item.dc_subject rescue nil))
author = select_nonempty((item.author.name.content rescue nil), (item.dc_creator rescue nil), (item.author rescue nil))
line1 = nil
|