Browse Source

Fix tootctl accounts migrate error due to typo (#23567)

closed-social-glitch-2
Claire 1 year ago
committed by GitHub
parent
commit
8784498ebf
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

@ -627,7 +627,7 @@ module Mastodon
exit(1)
end
unless options[:force] || migration.target_acount_id == account.moved_to_account_id
unless options[:force] || migration.target_account_id == account.moved_to_account_id
say('The specified account is not redirecting to its last migration target. Use --force if you want to replay the migration anyway', :red)
exit(1)
end

Loading…
Cancel
Save