Skip to content

Commit

Permalink
Fix tootctl accounts migrate error due to typo (#23567)
Browse files Browse the repository at this point in the history
  • Loading branch information
ClearlyClaire committed Mar 13, 2023
1 parent 63532d9 commit f5f17e8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/mastodon/accounts_cli.rb
Expand Up @@ -631,7 +631,7 @@ def migrate(username)
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
Expand Down

0 comments on commit f5f17e8

Please sign in to comment.