Fix crash in SuspendAccountWorker (#15106)
* Fix crash in SuspendAccountWorker `follows` is an array thanks to `to_a` * Fix code style issue Co-authored-by: Eugen Rochko <eugen@zeonfederated.com>
This commit is contained in:
parent
3134691948
commit
1e64666662
1 changed files with 1 additions and 1 deletions
|
@ -38,7 +38,7 @@ class SuspendAccountService < BaseService
|
||||||
[Oj.dump(serialize_payload(follow, ActivityPub::RejectFollowSerializer)), follow.target_account_id, @account.inbox_url]
|
[Oj.dump(serialize_payload(follow, ActivityPub::RejectFollowSerializer)), follow.target_account_id, @account.inbox_url]
|
||||||
end
|
end
|
||||||
|
|
||||||
follows.in_batches.destroy_all
|
follows.each(&:destroy)
|
||||||
end
|
end
|
||||||
|
|
||||||
def distribute_update_actor!
|
def distribute_update_actor!
|
||||||
|
|
Loading…
Reference in a new issue