Browse Source

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

closed-social-glitch-2
Claire 1 year ago
committed by GitHub
parent
commit
c52263f6f8
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
      lib/mastodon/accounts_cli.rb

+ 1
- 1
lib/mastodon/accounts_cli.rb 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

Loading…
Cancel
Save