about summary refs log tree commit diff
path: root/app/controllers/settings/migrations_controller.rb
diff options
context:
space:
mode:
Diffstat (limited to 'app/controllers/settings/migrations_controller.rb')
-rw-r--r--app/controllers/settings/migrations_controller.rb3
1 files changed, 2 insertions, 1 deletions
diff --git a/app/controllers/settings/migrations_controller.rb b/app/controllers/settings/migrations_controller.rb
index b18403a7f..bc6436b87 100644
--- a/app/controllers/settings/migrations_controller.rb
+++ b/app/controllers/settings/migrations_controller.rb
@@ -28,6 +28,7 @@ class Settings::MigrationsController < ApplicationController
   end
 
   def migration_account_changed?
-    current_account.moved_to_account_id != @migration.account&.id
+    current_account.moved_to_account_id != @migration.account&.id &&
+      current_account.id != @migration.account&.id
   end
 end