Don't update discussion list when a filter is active

This commit is contained in:
Toby Zerner 2015-08-10 16:47:17 +09:30
parent 055efe21d6
commit 8f6b529fc6

View File

@ -36,7 +36,7 @@ app.initializers.add('pusher', () => {
channels.main.bind('newPost', data => {
const params = this.props.params;
if (!params.q && !params.sort) {
if (!params.q && !params.sort && !params.filter) {
if (params.tags) {
const tag = app.store.getBy('tags', 'slug', params.tags);