From 6b46d69b658f9bce9cbe51ae42dfc235b658434e Mon Sep 17 00:00:00 2001 From: Raphael Sofaer <raphael@joindiaspora.com> Date: Sat, 2 Jul 2011 14:38:17 -0700 Subject: [PATCH] Revert "Take off the including of contacts in aspectscontroller. Cross your fingers for a performance boost." This reverts commit 7baeaebe57c743e0372028820b268c56fad1c8ab. --- app/controllers/aspects_controller.rb | 3 +++ 1 file changed, 3 insertions(+) diff --git a/app/controllers/aspects_controller.rb b/app/controllers/aspects_controller.rb index 774f4d20ba..3a6c1951ae 100644 --- a/app/controllers/aspects_controller.rb +++ b/app/controllers/aspects_controller.rb @@ -20,6 +20,9 @@ class AspectsController < ApplicationController aspect_ids = @aspects.map{|a| a.id} + #No aspect_listings on infinite scroll + @aspects = @aspects.includes(:contacts => {:person => :profile}) unless params[:only_posts] + # redirect to signup if (current_user.getting_started == true || @aspects.blank?) && !request.format.mobile? && !request.format.js? redirect_to getting_started_path -- GitLab