Fixes and general progress

This commit is contained in:
Eugen Rochko
2016-02-22 18:10:30 +01:00
parent 709c6685a9
commit 1dad72bf13
15 changed files with 133 additions and 34 deletions

View File

@ -1,7 +1,7 @@
class FollowService
def call(source_account, uri)
target_account = follow_remote_account_service.(uri)
source_account.follow!(target_account)
source_account.follow!(target_account) unless target_account.nil?
end
private