logo

mastofe

My custom branche(s) on git.pleroma.social/pleroma/mastofe
commit: 38ce960ff91b63044073cfe26bf79dbc360842d6
parent: cfba03bd277c4be8a32484d28b785a3c4107f808
Author: Eugen Rochko <eugen@zeonfederated.com>
Date:   Mon, 10 Oct 2016 17:30:49 +0200

Use Account#find_remote method when possible

Diffstat:

Mapp/services/process_feed_service.rb2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 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}")