From: Eugen Rochko Date: Mon, 10 Oct 2016 15:30:49 +0000 (+0200) Subject: Use Account#find_remote method when possible X-Git-Url: https://git.xn--scling-oua.cat.family/?a=commitdiff_plain;h=38ce960ff91b63044073cfe26bf79dbc360842d6;p=mastodon.git Use Account#find_remote method when possible --- diff --git a/app/services/process_feed_service.rb b/app/services/process_feed_service.rb index 5b5800f16..537c1a8ff 100644 --- a/app/services/process_feed_service.rb +++ b/app/services/process_feed_service.rb @@ -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}")