FIX: web crawlers getting 404 on category pages

This commit is contained in:
Neil Lalonde 2017-04-06 14:52:06 -04:00
parent 8e23b7fbc9
commit 708f65f740
1 changed files with 2 additions and 2 deletions

View File

@ -79,8 +79,8 @@ class ListController < ApplicationController
# Note the first is the default and we don't add a title # Note the first is the default and we don't add a title
if (filter.to_s != current_homepage) && use_crawler_layout? if (filter.to_s != current_homepage) && use_crawler_layout?
filter_title = I18n.t("js.filters.#{filter.to_s}.title", count: 0) filter_title = I18n.t("js.filters.#{filter.to_s}.title", count: 0)
if list_opts[:category] if list_opts[:category] && @category
@title = I18n.t('js.filters.with_category', filter: filter_title, category: Category.find(list_opts[:category]).name) @title = I18n.t('js.filters.with_category', filter: filter_title, category: @category.name)
else else
@title = I18n.t('js.filters.with_topics', filter: filter_title) @title = I18n.t('js.filters.with_topics', filter: filter_title)
end end