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

lolsob-rspec
Claire 2022-12-07 14:13:10 +01:00 committed by GitHub
parent 7fe4f2c715
commit 56e253553f
1 changed files with 1 additions and 1 deletions

View File

@ -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