Skip to content
Snippets Groups Projects
Unverified Commit c52263f6 authored by Claire's avatar Claire Committed by GitHub
Browse files

Fix deprecation warning in `tootctl accounts rotate` (#22120)

parent c8a1faa8
No related branches found
No related tags found
No related merge requests found
......@@ -541,7 +541,7 @@ module Mastodon
old_key = account.private_key
new_key = OpenSSL::PKey::RSA.new(2048)
account.update(private_key: new_key.to_pem, public_key: new_key.public_key.to_pem)
ActivityPub::UpdateDistributionWorker.perform_in(delay, account.id, sign_with: old_key)
ActivityPub::UpdateDistributionWorker.perform_in(delay, account.id, { 'sign_with' => old_key })
end
end
end
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment