FIX: on topic page, don't try to render post counts for a deleted user

This commit is contained in:
Neil Lalonde
2015-01-15 15:39:26 -05:00
parent dc801bb442
commit 4a11bb5227
2 changed files with 7 additions and 0 deletions

View File

@ -212,6 +212,7 @@ class TopicView
def post_counts_by_user
@post_counts_by_user ||= Post.where(topic_id: @topic.id)
.where("user_id IS NOT NULL")
.group(:user_id)
.order("count_all DESC")
.limit(24)