diff options
-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 882a15fb..7d926604 100644 --- a/data/rbot/plugins/rss.rb +++ b/data/rbot/plugins/rss.rb @@ -93,7 +93,7 @@ class ::RssBlob else
a = self.to_a[0,3]
end
- a.join(" | ")
+ a.compact.join(" | ")
end
end
|