Skip to content
Snippets Groups Projects
Unverified Commit 82ef5c04 authored by Eugen Rochko's avatar Eugen Rochko Committed by GitHub
Browse files

Fix list of local followers showing remote followers in admin UI (#9700)

parent 5efedb5d
No related branches found
No related tags found
No related merge requests found
......@@ -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
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment