diff --git a/app/assets/javascripts/discourse/routes/tags-show.js.es6 b/app/assets/javascripts/discourse/routes/tags-show.js.es6 index c82acb9eabb..db344ef8840 100644 --- a/app/assets/javascripts/discourse/routes/tags-show.js.es6 +++ b/app/assets/javascripts/discourse/routes/tags-show.js.es6 @@ -140,16 +140,6 @@ export default Discourse.Route.extend({ didTransition() { this.controllerFor("tags.show")._showFooter(); return true; - }, - - willTransition(transition) { - if (!Discourse.SiteSettings.show_filter_by_tag) { return true; } - - if ((transition.targetName.indexOf("discovery.parentCategory") !== -1 || - transition.targetName.indexOf("discovery.category") !== -1) && !transition.queryParams.allTags ) { - this.transitionTo("/tags" + transition.intent.url + "/" + this.currentModel.get("id")); - } - return true; } } });