diff options
author | Claire <claire.github-309c@sitedethib.com> | 2022-11-07 08:31:36 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-11-07 08:31:36 +0100 |
commit | b67e0c94a68e38fce1b996879c9279426cc8647d (patch) | |
tree | 4616faef084b1b6eab7d6324ef20b2fb0f75f3c4 /app/models | |
parent | 54101563bbadbfafd9291a867d7fbea6df3a8b7b (diff) | |
parent | 7ba13dddfadc4231f8c0643bae5a20018892855b (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.rb | 2 |
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 |