Quellcode durchsuchen

Send undo of boost to original poster if reblog (#7959)

Fix #7874
master
Eugen Rochko vor 5 Jahren
committed by GitHub
Ursprung
Commit
8461cd4bb5
Es konnte kein GPG-Schlüssel zu dieser Signatur gefunden werden GPG-Schlüssel-ID: 4AEE18F83AFDEB23
1 geänderte Dateien mit 3 neuen und 1 gelöschten Zeilen
  1. +3
    -1
      app/services/remove_status_service.rb

+ 3
- 1
app/services/remove_status_service.rb Datei anzeigen

@@ -67,7 +67,9 @@ class RemoveStatusService < BaseService
# delete notification - so here, we explicitly # delete notification - so here, we explicitly
# send it to them # send it to them


target_accounts = (@mentions.map(&:account).reject(&:local?) + @reblogs.map(&:account).reject(&:local?)).uniq(&:id)
target_accounts = (@mentions.map(&:account).reject(&:local?) + @reblogs.map(&:account).reject(&:local?))
target_accounts << @status.reblog.account if @status.reblog? && !@status.reblog.account.local?
target_accounts.uniq!(&:id)


# Ostatus # Ostatus
NotificationWorker.push_bulk(target_accounts.select(&:ostatus?).uniq(&:domain)) do |target_account| NotificationWorker.push_bulk(target_accounts.select(&:ostatus?).uniq(&:domain)) do |target_account|


Laden…
Abbrechen
Speichern