diff options
author | Matthias Hecker <apoc@sixserv.org> | 2013-11-14 15:08:19 +0000 |
---|---|---|
committer | Matthias Hecker <apoc@sixserv.org> | 2013-11-14 15:08:19 +0000 |
commit | c59034cc3fa2f36213dc198af372fec28219b659 (patch) | |
tree | 14af559f0740e3c04ed2cc6b011dfe940f1a2112 /data/rbot/plugins | |
parent | c02cb195e052d4c98540c79407bb752d627e8412 (diff) |
twitter: changed filter title, to only contain usr
Diffstat (limited to 'data/rbot/plugins')
-rw-r--r-- | data/rbot/plugins/twitter.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/data/rbot/plugins/twitter.rb b/data/rbot/plugins/twitter.rb index 16813c60..991b5bd3 100644 --- a/data/rbot/plugins/twitter.rb +++ b/data/rbot/plugins/twitter.rb @@ -57,7 +57,7 @@ class TwitterPlugin < Plugin } status[:nicedate] = String === status[:date] ? status[:date] : Utils.timeago(status[:date]) return { - :title => "@#{status[:user_nick]}: #{status[:text]}", + :title => "@#{status[:user_nick]}", :content => "#{status[:text]} (#{status[:nicedate]} via #{status[:source]})" } rescue |