Skip Webfinger cache during migrations as well (#19883)

This commit is contained in:
nightpool 2022-11-06 21:31:38 -05:00 committed by GitHub
parent 8c81db5a41
commit 54f0f1b9ef
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -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