mirror of
https://github.com/discourse/discourse.git
synced 2025-01-31 15:34:16 +08:00
FIX: web crawlers getting 404 on category pages
This commit is contained in:
parent
8e23b7fbc9
commit
708f65f740
|
@ -79,8 +79,8 @@ class ListController < ApplicationController
|
|||
# Note the first is the default and we don't add a title
|
||||
if (filter.to_s != current_homepage) && use_crawler_layout?
|
||||
filter_title = I18n.t("js.filters.#{filter.to_s}.title", count: 0)
|
||||
if list_opts[:category]
|
||||
@title = I18n.t('js.filters.with_category', filter: filter_title, category: Category.find(list_opts[:category]).name)
|
||||
if list_opts[:category] && @category
|
||||
@title = I18n.t('js.filters.with_category', filter: filter_title, category: @category.name)
|
||||
else
|
||||
@title = I18n.t('js.filters.with_topics', filter: filter_title)
|
||||
end
|
||||
|
|
Loading…
Reference in New Issue
Block a user