summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTakeshi Umeda <noel.yoshiba@gmail.com>2021-05-08 23:22:18 +0900
committerGitHub <noreply@github.com>2021-05-08 16:22:18 +0200
commit9da5e0b350baed99d8ad81760611dbcdbbb5383d (patch)
treee3a5f150bbb4e3027b4e2aa4ecb65fae55d3c845
parent68181b95064d522dbd9b41b15e7716d03c333c0e (diff)
Fix webfinger_update_due to run WebFinger on stale activitypub-account (#16182)
-rw-r--r--app/services/resolve_account_service.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/services/resolve_account_service.rb b/app/services/resolve_account_service.rb
index b8ddeb2adc0..493995447a8 100644
--- a/app/services/resolve_account_service.rb
+++ b/app/services/resolve_account_service.rb
@@ -122,7 +122,7 @@ class ResolveAccountService < BaseService
return false if @options[:check_delivery_availability] && !DeliveryFailureTracker.available?(@domain)
return false if @options[:skip_webfinger]
- @account.nil? || (@account.ostatus? && @account.possibly_stale?)
+ @account.nil? || @account.possibly_stale?
end
def activitypub_ready?