Fix undesired delivering of private toot to remote accounts that follow author

th-downstream
Eugen Rochko 8 years ago
parent 2de668bcf9
commit 66c5363bae

@ -28,7 +28,7 @@ class ProcessMentionsService < BaseService
status.mentions.each do |mention| status.mentions.each do |mention|
mentioned_account = mention.account 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? if mentioned_account.local?
NotifyService.new.call(mentioned_account, mention) NotifyService.new.call(mentioned_account, mention)

Loading…
Cancel
Save