controllers: temp fix exception in show actions.

Temp fix a regression caused by c7185724d.
This commit is contained in:
evazion
2020-02-04 03:44:08 -06:00
parent 6a729cf184
commit fcfdd94fe9
2 changed files with 2 additions and 2 deletions

View File

@@ -18,7 +18,7 @@ module Moderator
@posts = ::Post.includes(:disapprovals, :uploader).order("posts.id asc").pending_or_flagged.available_for_moderation(search_params[:hidden]).tag_match(search_params[:tags]).paginate(params[:page], :limit => per_page)
@posts.each # hack to force rails to eager load
end
respond_with(@posts)
#respond_with(@posts)
end
def random

View File

@@ -6,6 +6,6 @@ class RelatedTagsController < ApplicationController
category = params[:category] || search_params[:category]
@query = RelatedTagQuery.new(query: query, category: category, user: CurrentUser.user)
respond_with(@query)
#respond_with(@query)
end
end