Fix webfinger_update_due to run WebFinger on stale activitypub-account (#16182)

master
Takeshi Umeda 3 years ago committed by GitHub
parent 68181b9506
commit 9da5e0b350
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      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?

Loading…
Cancel
Save