diff options
author | Claire <claire.github-309c@sitedethib.com> | 2022-12-09 22:59:01 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-12-09 22:59:01 +0100 |
commit | 5d95e6debb496bb4ebba91afc043219c116d3ca2 (patch) | |
tree | 954da9801a3568c5edab20031c7e0bd1d691814d /lib | |
parent | 859db01268bdae0d423ccf97fbeef87eb4f13f0d (diff) | |
parent | 3ea445bb5c856143e758dcb78d89750af91a0f90 (diff) |
Merge pull request #2001 from ClearlyClaire/glitch-soc/main
Merge upstream changes
Diffstat (limited to 'lib')
-rw-r--r-- | lib/mastodon/accounts_cli.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/mastodon/accounts_cli.rb b/lib/mastodon/accounts_cli.rb index c8a8448ed..77cbef84e 100644 --- a/lib/mastodon/accounts_cli.rb +++ b/lib/mastodon/accounts_cli.rb @@ -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 |