Use username/domain to match existing accounts in ActivityPub (#6842)

See also: #6837, #6667
master
Eugen Rochko 6 years ago committed by GitHub
parent a5c6c748e0
commit 9381a7d9d5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      app/services/activitypub/process_account_service.rb

@ -16,7 +16,7 @@ class ActivityPub::ProcessAccountService < BaseService
RedisLock.acquire(lock_options) do |lock|
if lock.acquired?
@account = Account.find_by(uri: @uri)
@account = Account.find_remote(@username, @domain)
@old_public_key = @account&.public_key
@old_protocol = @account&.protocol

Loading…
Cancel
Save