FIX: don't compute draft for bots on categories index route

This commit is contained in:
Neil Lalonde 2020-05-14 16:35:32 -04:00
parent e0e967ac46
commit 1b7f23a1bc
No known key found for this signature in database
GPG Key ID: FF871CA9037D0A91
1 changed files with 7 additions and 5 deletions

View File

@ -31,11 +31,13 @@ class CategoriesController < ApplicationController
@category_list = CategoryList.new(guardian, category_options)
@category_list.draft_key = Draft::NEW_TOPIC
@category_list.draft_sequence = DraftSequence.current(
current_user,
Draft::NEW_TOPIC
)
@category_list.draft = Draft.get(current_user, Draft::NEW_TOPIC, @category_list.draft_sequence) if current_user
if current_user&.human?
@category_list.draft_sequence = DraftSequence.current(
current_user,
Draft::NEW_TOPIC
)
@category_list.draft = Draft.get(current_user, Draft::NEW_TOPIC, @category_list.draft_sequence)
end
if category_options[:is_homepage] && SiteSetting.short_site_description.present?
@title = "#{SiteSetting.title} - #{SiteSetting.short_site_description}"