From: Eugen Rochko Date: Thu, 3 Jan 2019 05:40:16 +0000 (+0100) Subject: Fix list of local followers showing remote followers in admin UI (#9700) X-Git-Url: https://git.xn--scling-oua.cat.family/?a=commitdiff_plain;h=82ef5c0461509cbc2ada01e6e124218a030c39df;p=mastodon.git Fix list of local followers showing remote followers in admin UI (#9700) --- diff --git a/app/controllers/admin/followers_controller.rb b/app/controllers/admin/followers_controller.rb index 819628b20..d826f47c5 100644 --- a/app/controllers/admin/followers_controller.rb +++ b/app/controllers/admin/followers_controller.rb @@ -8,15 +8,11 @@ module Admin def index authorize :account, :index? - @followers = followers.recent.page(params[:page]).per(PER_PAGE) + @followers = @account.followers.local.recent.page(params[:page]).per(PER_PAGE) end def set_account @account = Account.find(params[:account_id]) end - - def followers - Follow.includes(:account).where(target_account: @account) - end end end