commit: 251b04298e826818ecb48c2fdf96a83649e14e93
parent: 98729d50c80760e076607ecf625a95caea817aed
Author: Eugen Rochko <eugen@zeonfederated.com>
Date: Thu, 5 Jan 2017 03:17:23 +0100
Fix undesired delivering of private toot to remote accounts that follow author
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git 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)