Browse Source

Remove LDSignature on actor Delete activities (#21466)

They are currently not used for anything and represent more than half of the
payload size.
closed-social-glitch-2
Claire 1 year ago
committed by GitHub
parent
commit
f4f2b062ec
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      app/services/delete_account_service.rb

+ 1
- 1
app/services/delete_account_service.rb View File

@ -267,7 +267,7 @@ class DeleteAccountService < BaseService
end
def delete_actor_json
@delete_actor_json ||= Oj.dump(serialize_payload(@account, ActivityPub::DeleteActorSerializer, signer: @account, always_sign: true))
@delete_actor_json ||= Oj.dump(serialize_payload(@account, ActivityPub::DeleteActorSerializer))
end
def delivery_inboxes

Loading…
Cancel
Save