2
0

Add digest re-check before removing followers in synchronization mechanism (#34273)

This commit is contained in:
Claire
2025-08-27 14:12:55 +02:00
committed by GitHub
parent 66f5ad42e2
commit c00ed9c913
5 changed files with 145 additions and 7 deletions

View File

@@ -8,6 +8,6 @@ class ActivityPub::PrepareFollowersSynchronizationService < BaseService
return if params['collectionId'] != @account.followers_url || non_matching_uri_hosts?(@account.uri, params['url']) || @account.local_followers_hash == params['digest']
ActivityPub::FollowersSynchronizationWorker.perform_async(@account.id, params['url'])
ActivityPub::FollowersSynchronizationWorker.perform_async(@account.id, params['url'], params['digest'])
end
end