mirror of
https://github.com/discourse/discourse.git
synced 2025-09-05 08:59:27 +08:00
Fix the build.
This commit is contained in:
parent
1197750e7d
commit
bd0efb8525
1 changed files with 10 additions and 4 deletions
|
@ -25,10 +25,16 @@ class CategoryList
|
|||
trim_results
|
||||
|
||||
if preloaded_topic_custom_fields.present?
|
||||
Topic.preload_custom_fields(
|
||||
@categories.map(&:displayable_topics).flatten,
|
||||
preloaded_topic_custom_fields
|
||||
)
|
||||
displayable_topics = @categories.map(&:displayable_topics)
|
||||
displayable_topics.flatten!
|
||||
displayable_topics.compact!
|
||||
|
||||
if displayable_topics.present?
|
||||
Topic.preload_custom_fields(
|
||||
displayable_topics,
|
||||
preloaded_topic_custom_fields
|
||||
)
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue