summaryrefslogtreecommitdiff
path: root/data/rbot/plugins/rss.rb
diff options
context:
space:
mode:
Diffstat (limited to 'data/rbot/plugins/rss.rb')
-rw-r--r--data/rbot/plugins/rss.rb8
1 files changed, 8 insertions, 0 deletions
diff --git a/data/rbot/plugins/rss.rb b/data/rbot/plugins/rss.rb
index 8e8cb29c..f6e0b98a 100644
--- a/data/rbot/plugins/rss.rb
+++ b/data/rbot/plugins/rss.rb
@@ -920,6 +920,14 @@ class RSSFeedsPlugin < Plugin
abt = category ? "about #{category} " : ""
line1 = "#{handle}#{date}#{author}blogged #{abt}at #{link}"
line2 = "#{handle}#{title} - #{desc}"
+ when 'photoblog'
+ author += " " if author
+ abt = category ? "under #{category} " : ""
+ line1 = "#{handle}#{date}#{author}added an image #{abt}at #{link}"
+ line2 = "#{handle}#{title} - #{desc}"
+ when 'news'
+ line1 = "#{handle}#{date}#{title} @ #{link}"
+ line2 = line2 = "#{handle}#{date}#{desc}"
when 'git'
author += " " if author
line1 = "#{handle}#{date}#{author}commited #{title} @ #{link}"