missing condition

This commit is contained in:
Sam 2015-06-28 10:00:17 +10:00
parent e04d66aa2c
commit 0c403272e2

View File

@ -88,7 +88,7 @@ export default Em.Controller.extend(Presence, {
actions: {
moreOfType: function(type) {
if (type === 'topic' && this.get('searchContext.type') !== 'topic') {
if (type === 'topic' && (!this.get('searchContextEnabled') || this.get('searchContext.type') !== 'topic')) {
var term = this.get('term');
// TODO in topic and in category special handling
Discourse.URL.routeTo("/search?q=" + encodeURIComponent(term));