Fix `tootctl accounts create --reattach --force` not working with confirmed accounts (#24680)

local
Daniel M Brasil 1 year ago committed by GitHub
parent 49fad26eca
commit 1d9969fadf
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      lib/mastodon/accounts_cli.rb

@ -102,7 +102,7 @@ module Mastodon
say('Use --force to reattach it anyway and delete the other user')
return
elsif account.user.present?
DeleteAccountService.new.call(account, reserve_email: false)
DeleteAccountService.new.call(account, reserve_email: false, reserve_username: false)
account = Account.new(username: username)
end
end

Loading…
Cancel
Save