correct regression where clicking on unlisted topics does not work

This commit is contained in:
Sam 2016-06-12 16:36:38 +10:00
parent 73859e8315
commit e66c51fd85
1 changed files with 1 additions and 1 deletions

View File

@ -77,7 +77,7 @@ class TopicsController < ApplicationController
discourse_expires_in 1.minute
if !@topic_view.topic.visible && @topic_view.topic.slug != params[:slug]
if !@topic_view.topic.visible && @topic_view.topic.slug != params[:slug] && !request.format.json?
raise Discourse::NotFound
end