Browse Source

Fix previously OStatus-based accounts not being detected as ActivityPub (#13129)

master
ThibG 4 years ago
committed by GitHub
parent
commit
983ab40086
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

@ -99,7 +99,7 @@ class ResolveAccountService < BaseService
if lock.acquired?
@account = Account.find_remote(@username, @domain)
next if (@account.present? && !@account.activitypub?) || actor_json.nil?
next if actor_json.nil?
@account = ActivityPub::ProcessAccountService.new.call(@username, @domain, actor_json)
else

Loading…
Cancel
Save