about summary refs log tree commit diff
path: root/app/services/process_mentions_service.rb
diff options
context:
space:
mode:
authorEugen Rochko <eugen@zeonfederated.com>2016-03-16 21:20:50 +0100
committerEugen Rochko <eugen@zeonfederated.com>2016-03-16 21:20:50 +0100
commitd0229754442dc824dc38bf99344052b3931998f8 (patch)
treef557690dbfd221e975382106da3f3d8a9b078f5c /app/services/process_mentions_service.rb
parent086d4871451a0d609f539235e9b3da87279f5008 (diff)
Fixing small bug with FollowRemoteAccountService usage
Diffstat (limited to 'app/services/process_mentions_service.rb')
-rw-r--r--app/services/process_mentions_service.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/services/process_mentions_service.rb b/app/services/process_mentions_service.rb
index e1fc2f038..760fdcf15 100644
--- a/app/services/process_mentions_service.rb
+++ b/app/services/process_mentions_service.rb
@@ -11,7 +11,7 @@ class ProcessMentionsService < BaseService
       mentioned_account = Account.find_by(username: username, domain: domain)
 
       if mentioned_account.nil?
-        mentioned_account = follow_remote_account_service.("acct:#{match.first}")
+        mentioned_account = follow_remote_account_service.("#{match.first}")
       end
 
       mentioned_account.mentions.first_or_create(status: status)