Use Account#find_remote method when possible

lolsob-rspec
Eugen Rochko 2016-10-10 17:30:49 +02:00
parent 3d229e3937
commit 80217fd58b
1 changed files with 1 additions and 1 deletions

View File

@ -147,7 +147,7 @@ class ProcessFeedService < BaseService
username = xml.at_xpath('./activity:object/xmlns:author/xmlns:name').content
url = xml.at_xpath('./activity:object/xmlns:author/xmlns:uri').content
domain = Addressable::URI.parse(url).host
account = Account.find_by(username: username, domain: domain)
account = Account.find_remote(username, domain)
if account.nil?
account = follow_remote_account_service.call("#{username}@#{domain}")