logo

mastofe

My custom branche(s) on git.pleroma.social/pleroma/mastofe
commit: 446267d1bfaba0f596544186361553118615e942
parent: 78b3b52663a17b9822a857393b5b03f2c1e9587f
Author: Eugen Rochko <eugen@zeonfederated.com>
Date:   Sun, 12 Feb 2017 01:38:29 +0100

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

Diffstat:

Mapp/services/remove_status_service.rb4++++
1 file changed, 4 insertions(+), 0 deletions(-)

diff --git a/app/services/remove_status_service.rb b/app/services/remove_status_service.rb @@ -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