FIX: handle missing user records

This commit is contained in:
Arpit Jalan 2018-01-03 17:05:01 +05:30
parent ad02437358
commit 06e509057e
1 changed files with 2 additions and 1 deletions

View File

@ -92,9 +92,10 @@ class TopicViewSerializer < ApplicationSerializer
end
if object.post_counts_by_user.present?
result[:participants] = object.post_counts_by_user.map do |pc|
participants = object.post_counts_by_user.reject{ |p| object.participants[p].blank? }.map do |pc|
TopicPostCountSerializer.new({ user: object.participants[pc[0]], post_count: pc[1] }, scope: scope, root: false)
end
result[:participants] = participants if participants.length > 0
end
if object.links.present?