0
0
Fork 0

Fixing small bug with FollowRemoteAccountService usage

This commit is contained in:
Eugen Rochko 2016-03-16 21:20:50 +01:00
parent 086d487145
commit d022975444
3 changed files with 3 additions and 5 deletions

View file

@ -98,7 +98,7 @@ class ProcessFeedService < BaseService
account = Account.find_by(username: username, domain: domain)
if account.nil?
account = follow_remote_account_service.("acct:#{username}@#{domain}", false)
account = follow_remote_account_service.("#{username}@#{domain}", false)
return nil if account.nil?
end