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 08:31:36 +0100
committerGitHub <noreply@github.com>2022-11-07 08:31:36 +0100
commitb67e0c94a68e38fce1b996879c9279426cc8647d (patch)
tree4616faef084b1b6eab7d6324ef20b2fb0f75f3c4 /app/models
parent54101563bbadbfafd9291a867d7fbea6df3a8b7b (diff)
parent7ba13dddfadc4231f8c0643bae5a20018892855b (diff)
Merge pull request #1899 from ClearlyClaire/glitch-soc/merge-upstream
Merge upstream changes
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