Fix account migration not affecting followers on origin server (#11980)
This commit is contained in:
parent
bd9685f798
commit
368a87755b
4 changed files with 67 additions and 8 deletions
|
@ -18,9 +18,7 @@ class Settings::MigrationsController < Settings::BaseController
|
|||
@migration = current_account.migrations.build(resource_params)
|
||||
|
||||
if @migration.save_with_challenge(current_user)
|
||||
current_account.update!(moved_to_account: @migration.target_account)
|
||||
ActivityPub::UpdateDistributionWorker.perform_async(current_account.id)
|
||||
ActivityPub::MoveDistributionWorker.perform_async(@migration.id)
|
||||
MoveService.new.call(@migration)
|
||||
redirect_to settings_migration_path, notice: I18n.t('migrations.moved_msg', acct: current_account.moved_to_account.acct)
|
||||
else
|
||||
render :show
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue