Fix leak where edited, local-only statuses federated
More info to come in release notes, coming very very soon.
This commit is contained in:
parent
15e78b9a0a
commit
4c577a769a
|
@ -125,7 +125,7 @@ class UpdateStatusService < BaseService
|
||||||
|
|
||||||
def broadcast_updates!
|
def broadcast_updates!
|
||||||
DistributionWorker.perform_async(@status.id, { 'update' => true })
|
DistributionWorker.perform_async(@status.id, { 'update' => true })
|
||||||
ActivityPub::StatusUpdateDistributionWorker.perform_async(@status.id)
|
ActivityPub::StatusUpdateDistributionWorker.perform_async(@status.id) unless @status.local_only?
|
||||||
end
|
end
|
||||||
|
|
||||||
def queue_poll_notifications!
|
def queue_poll_notifications!
|
||||||
|
|
Loading…
Reference in New Issue