FIX: Pass current_user to TopicQuery in for categories_and_top_topics (#9885)

This commit is contained in:
Martin Brennan 2020-05-27 10:05:06 +10:00 committed by GitHub
parent 34e5f0a9a3
commit 2d534bf2e0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -57,7 +57,7 @@ class CategoriesController < ApplicationController
@topic_list = TopicQuery.new(current_user, topic_options).list_latest
@topic_list.more_topics_url = url_for(public_send("latest_path"))
elsif style == "categories_and_top_topics"
@topic_list = TopicQuery.new(nil, topic_options).list_top_for(SiteSetting.top_page_default_timeframe.to_sym)
@topic_list = TopicQuery.new(current_user, topic_options).list_top_for(SiteSetting.top_page_default_timeframe.to_sym)
@topic_list.more_topics_url = url_for(public_send("top_path"))
end