Skip to content
Snippets Groups Projects
Unverified Commit 9da5e0b3 authored by Takeshi Umeda's avatar Takeshi Umeda Committed by GitHub
Browse files

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

parent 68181b95
No related branches found
No related tags found
No related merge requests found
......@@ -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?
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment