mirror of
https://github.com/mastodon/mastodon.git
synced 2024-11-12 18:16:21 +00:00
Fix deprecation warning in tootctl accounts rotate
(#22120)
This commit is contained in:
parent
c8a1faa86b
commit
c52263f6f8
|
@ -541,7 +541,7 @@ module Mastodon
|
||||||
old_key = account.private_key
|
old_key = account.private_key
|
||||||
new_key = OpenSSL::PKey::RSA.new(2048)
|
new_key = OpenSSL::PKey::RSA.new(2048)
|
||||||
account.update(private_key: new_key.to_pem, public_key: new_key.public_key.to_pem)
|
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
|
end
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in a new issue