Browse Source

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

closed-social-v3
Takeshi Umeda 3 years ago
committed by GitHub
parent
commit
9da5e0b350
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      app/services/resolve_account_service.rb

+ 1
- 1
app/services/resolve_account_service.rb View File

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