about summary refs log tree commit diff
path: root/app/models
diff options
context:
space:
mode:
authorClaire <claire.github-309c@sitedethib.com>2022-11-07 07:50:47 +0100
committerClaire <claire.github-309c@sitedethib.com>2022-11-07 07:50:47 +0100
commit6c0a6097ff7ddc23e9f024d3826a4f7cc1520f69 (patch)
tree31a15cf4bc3b319d675ebfe7b0351f9c2837cea3 /app/models
parent54101563bbadbfafd9291a867d7fbea6df3a8b7b (diff)
parenta70e2cd649cbd82d534f03202fb3078a4ae1af1d (diff)
Merge branch 'main' into glitch-soc/merge-upstream
Diffstat (limited to 'app/models')
-rw-r--r--app/models/account_migration.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/models/account_migration.rb b/app/models/account_migration.rb
index 06291c9f3..16276158d 100644
--- a/app/models/account_migration.rb
+++ b/app/models/account_migration.rb
@@ -58,7 +58,7 @@ class AccountMigration < ApplicationRecord
   private
 
   def set_target_account
-    self.target_account = ResolveAccountService.new.call(acct)
+    self.target_account = ResolveAccountService.new.call(acct, skip_cache: true)
   rescue Webfinger::Error, HTTP::Error, OpenSSL::SSL::SSLError, Mastodon::Error
     # Validation will take care of it
   end