diff options
author | ThibG <thib@sitedethib.com> | 2020-06-03 20:18:19 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-06-03 20:18:19 +0200 |
commit | bf949346232b3db731675c1342f50d97fd4a7ef8 (patch) | |
tree | d4dbff51de1ada623a8a0ce7e58ddd5be084b23b /app/controllers/settings | |
parent | 643065799bbb0a842a321a2a0434df347146b3e6 (diff) |
Fix account redirect confirmation message talking about moved followers (#13950)
Fixes #13949
Diffstat (limited to 'app/controllers/settings')
-rw-r--r-- | app/controllers/settings/migration/redirects_controller.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/controllers/settings/migration/redirects_controller.rb b/app/controllers/settings/migration/redirects_controller.rb index 6e5b72ffb..97193ade0 100644 --- a/app/controllers/settings/migration/redirects_controller.rb +++ b/app/controllers/settings/migration/redirects_controller.rb @@ -18,7 +18,7 @@ class Settings::Migration::RedirectsController < Settings::BaseController if @redirect.valid_with_challenge?(current_user) current_account.update!(moved_to_account: @redirect.target_account) ActivityPub::UpdateDistributionWorker.perform_async(current_account.id) - redirect_to settings_migration_path, notice: I18n.t('migrations.moved_msg', acct: current_account.moved_to_account.acct) + redirect_to settings_migration_path, notice: I18n.t('migrations.redirected_msg', acct: current_account.moved_to_account.acct) else render :new end |