Browse Source

Deduplicate delete salmons (send only one per mentioned-account domain)

closed-social-glitch-2
Eugen Rochko 7 years ago
parent
commit
446267d1bf
1 changed files with 4 additions and 0 deletions
  1. +4
    -0
      app/services/remove_status_service.rb

+ 4
- 0
app/services/remove_status_service.rb View File

@ -32,12 +32,16 @@ class RemoveStatusService < BaseService
end
def remove_from_mentioned(status)
notified_domains = []
status.mentions.each do |mention|
mentioned_account = mention.account
if mentioned_account.local?
unpush(:mentions, mentioned_account, status)
else
next if notified_domains.include?(mentioned_account.domain)
notified_domains << mentioned_account.domain
send_delete_salmon(mentioned_account, status)
end
end

Loading…
Cancel
Save