diff options
Diffstat (limited to 'app')
-rw-r--r-- | app/services/process_feed_service.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/services/process_feed_service.rb b/app/services/process_feed_service.rb index afd44aafe..c573c0490 100644 --- a/app/services/process_feed_service.rb +++ b/app/services/process_feed_service.rb @@ -209,7 +209,7 @@ class ProcessFeedService < BaseService if TagManager.instance.web_domain?(url.host) Account.find_local(url.path.gsub('/users/', '')) else - Account.find_by(uri: href) || Account.find_by(url: href) || FetchRemoteAccountService.new.call(href) + Account.where(uri: href).or(Account.where(url: href)).first || FetchRemoteAccountService.new.call(href) end end |