mirror of
https://github.com/glitch-soc/mastodon.git
synced 2024-11-24 09:04:00 -05:00
Do not leak instance-local polls to remote followers
This commit is contained in:
parent
89bee860cd
commit
7d026aa079
@ -9,7 +9,7 @@ class ActivityPub::DistributePollUpdateWorker
|
|||||||
@status = Status.find(status_id)
|
@status = Status.find(status_id)
|
||||||
@account = @status.account
|
@account = @status.account
|
||||||
|
|
||||||
return unless @status.poll
|
return if @status.poll.nil? || @status.local_only?
|
||||||
|
|
||||||
ActivityPub::DeliveryWorker.push_bulk(inboxes) do |inbox_url|
|
ActivityPub::DeliveryWorker.push_bulk(inboxes) do |inbox_url|
|
||||||
[payload, @account.id, inbox_url]
|
[payload, @account.id, inbox_url]
|
||||||
|
Loading…
Reference in New Issue
Block a user