From: Eugen Rochko Date: Thu, 5 Jan 2017 02:17:23 +0000 (+0100) Subject: Fix undesired delivering of private toot to remote accounts that follow author X-Git-Url: https://git.xn--scling-oua.cat.family/?a=commitdiff_plain;h=251b04298e826818ecb48c2fdf96a83649e14e93;p=mastodon.git Fix undesired delivering of private toot to remote accounts that follow author --- 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)