diff options
author | Eugen Rochko <eugen@zeonfederated.com> | 2016-09-08 02:40:51 +0200 |
---|---|---|
committer | Eugen Rochko <eugen@zeonfederated.com> | 2016-09-08 02:40:51 +0200 |
commit | 509c18eb139ead0d2e2f02f580ef04b28d874f48 (patch) | |
tree | cb87396ee928a5d9bc349e15846d54179f7e2dbd /app/controllers/api | |
parent | 0f4bc567195d368de596cdeeee6bc0b6507ae95e (diff) |
Fix local follows, 404 in logs
Diffstat (limited to 'app/controllers/api')
-rw-r--r-- | app/controllers/api/accounts_controller.rb | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/app/controllers/api/accounts_controller.rb b/app/controllers/api/accounts_controller.rb index 8c4da5270..4a4431b2d 100644 --- a/app/controllers/api/accounts_controller.rb +++ b/app/controllers/api/accounts_controller.rb @@ -19,12 +19,7 @@ class Api::AccountsController < ApiController end def follow - if @account.local? - @follow = current_user.account.follow!(@account) - else - @follow = FollowService.new.(current_user.account, @account.acct) - end - + @follow = FollowService.new.(current_user.account, @account.acct) render action: :show end |