Skip to content

Commit

Permalink
ignore own tweet when notify
Browse files Browse the repository at this point in the history
  • Loading branch information
jugyo committed Aug 14, 2010
1 parent bde95d9 commit c85b3ea
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/plugins/defaults/keyword.rb
Expand Up @@ -65,7 +65,7 @@ module Termtter::Client
register_hook :notify_for_keywords, :point => :output do |statuses, event|
if config.plugins.keyword.notify == true && event == :update_friends_timeline
select_matched(statuses).each do |status|
notify(status.user.screen_name, status.text)
notify(status.user.screen_name, status.text) if status[:user][:screen_name] == config.user_name
end
end
end
Expand Down

0 comments on commit c85b3ea

Please sign in to comment.