diff options
author | multiple creatures <dev@multiple-creature.party> | 2019-10-27 12:17:50 -0500 |
---|---|---|
committer | multiple creatures <dev@multiple-creature.party> | 2019-10-27 12:17:50 -0500 |
commit | 58c707c474b4ebe6653ebe38aade9cbebe777926 (patch) | |
tree | 43e4376e5103d98011193137201d8047966c9b81 /app/controllers/api/v1/accounts/follower_accounts_controller.rb | |
parent | 87e48598f2fd3e9cca05fa5e1a73dc084ee3f5b6 (diff) |
make data miners' lives harder by also requiring authentication on account api endpoints
Diffstat (limited to 'app/controllers/api/v1/accounts/follower_accounts_controller.rb')
-rw-r--r-- | app/controllers/api/v1/accounts/follower_accounts_controller.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/controllers/api/v1/accounts/follower_accounts_controller.rb b/app/controllers/api/v1/accounts/follower_accounts_controller.rb index 2dabb8398..166d64495 100644 --- a/app/controllers/api/v1/accounts/follower_accounts_controller.rb +++ b/app/controllers/api/v1/accounts/follower_accounts_controller.rb @@ -25,7 +25,7 @@ class Api::V1::Accounts::FollowerAccountsController < Api::BaseController end def hide_results? - (@account.user_hides_network? && current_account.id != @account.id) || (current_account && @account.blocking?(current_account)) + !user_signed_in? || (@account.user_hides_network? && current_account.id != @account.id) || (current_account && @account.blocking?(current_account)) end def default_accounts |