diff options
author | Eugen Rochko <eugen@zeonfederated.com> | 2016-03-16 21:20:50 +0100 |
---|---|---|
committer | Eugen Rochko <eugen@zeonfederated.com> | 2016-03-16 21:20:50 +0100 |
commit | d0229754442dc824dc38bf99344052b3931998f8 (patch) | |
tree | f557690dbfd221e975382106da3f3d8a9b078f5c /app/services | |
parent | 086d4871451a0d609f539235e9b3da87279f5008 (diff) |
Fixing small bug with FollowRemoteAccountService usage
Diffstat (limited to 'app/services')
-rw-r--r-- | app/services/process_feed_service.rb | 2 | ||||
-rw-r--r-- | app/services/process_interaction_service.rb | 4 | ||||
-rw-r--r-- | app/services/process_mentions_service.rb | 2 |
3 files changed, 3 insertions, 5 deletions
diff --git a/app/services/process_feed_service.rb b/app/services/process_feed_service.rb index 605f615fd..8962603cf 100644 --- a/app/services/process_feed_service.rb +++ b/app/services/process_feed_service.rb @@ -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 diff --git a/app/services/process_interaction_service.rb b/app/services/process_interaction_service.rb index 877647bbe..43c8ca4fd 100644 --- a/app/services/process_interaction_service.rb +++ b/app/services/process_interaction_service.rb @@ -14,15 +14,13 @@ class ProcessInteractionService < 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 if account.nil? end if salmon.verify(envelope, account.keypair) update_remote_profile_service.(xml.at_xpath('/xmlns:entry/xmlns:author'), account) - binding.pry - case verb(xml) when :follow follow!(account, target_account) 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) |