diff options
author | Eugen Rochko <eugen@zeonfederated.com> | 2017-01-05 03:17:23 +0100 |
---|---|---|
committer | Eugen Rochko <eugen@zeonfederated.com> | 2017-01-05 03:17:23 +0100 |
commit | 251b04298e826818ecb48c2fdf96a83649e14e93 (patch) | |
tree | 7d0514b242b321af77485343cd9e9386bf01aac8 /app | |
parent | 98729d50c80760e076607ecf625a95caea817aed (diff) |
Fix undesired delivering of private toot to remote accounts that follow author
Diffstat (limited to 'app')
-rw-r--r-- | app/services/process_mentions_service.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/services/process_mentions_service.rb b/app/services/process_mentions_service.rb index ee42a5df2..72568e702 100644 --- a/app/services/process_mentions_service.rb +++ b/app/services/process_mentions_service.rb @@ -28,7 +28,7 @@ class ProcessMentionsService < BaseService status.mentions.each do |mention| mentioned_account = mention.account - next if status.private_visibility? && !mentioned_account.following?(status.account) + next if status.private_visibility? && (!mentioned_account.following?(status.account) || !mentioned_account.local?) if mentioned_account.local? NotifyService.new.call(mentioned_account, mention) |