Browse Source

Do not ignore federated reports targetting already-reported accounts (#9534)

pull/4/head
ThibG 5 years ago
committed by Eugen Rochko
parent
commit
b2f4114550
1 changed files with 0 additions and 2 deletions
  1. +0
    -2
      app/lib/activitypub/activity/flag.rb

+ 0
- 2
app/lib/activitypub/activity/flag.rb View File

@ -8,8 +8,6 @@ class ActivityPub::Activity::Flag < ActivityPub::Activity
target_statuses_by_account = object_uris.map { |uri| status_from_uri(uri) }.compact.select(&:local?).group_by(&:account_id)
target_accounts.each do |target_account|
next if Report.where(account: @account, target_account: target_account).exists?
target_statuses = target_statuses_by_account[target_account.id]
ReportService.new.call(

Loading…
Cancel
Save