Fix list of local followers showing remote followers in admin UI (#9700)
This commit is contained in:
		
							parent
							
								
									5efedb5d5e
								
							
						
					
					
						commit
						82ef5c0461
					
				
					 1 changed files with 1 additions and 5 deletions
				
			
		| 
						 | 
					@ -8,15 +8,11 @@ module Admin
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    def index
 | 
					    def index
 | 
				
			||||||
      authorize :account, :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
 | 
					    end
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    def set_account
 | 
					    def set_account
 | 
				
			||||||
      @account = Account.find(params[:account_id])
 | 
					      @account = Account.find(params[:account_id])
 | 
				
			||||||
    end
 | 
					    end
 | 
				
			||||||
 | 
					 | 
				
			||||||
    def followers
 | 
					 | 
				
			||||||
      Follow.includes(:account).where(target_account: @account)
 | 
					 | 
				
			||||||
    end
 | 
					 | 
				
			||||||
  end
 | 
					  end
 | 
				
			||||||
end
 | 
					end
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
		Reference in a new issue