From dbb7c756cdfc69d5a1e74ca569c7bd00b91bb62e Mon Sep 17 00:00:00 2001 From: syuilo Date: Sat, 20 Oct 2018 09:31:56 +0900 Subject: [PATCH] Fix bug --- src/client/app/desktop/views/pages/deck/deck.hashtag-tl.vue | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/client/app/desktop/views/pages/deck/deck.hashtag-tl.vue b/src/client/app/desktop/views/pages/deck/deck.hashtag-tl.vue index 98c15b4fb..2555e9700 100644 --- a/src/client/app/desktop/views/pages/deck/deck.hashtag-tl.vue +++ b/src/client/app/desktop/views/pages/deck/deck.hashtag-tl.vue @@ -47,7 +47,9 @@ export default Vue.extend({ mounted() { if (this.connection) this.connection.close(); - this.connection = (this as any).os.stream.connectToChannel('hashtag', this.tagTl.query); + this.connection = (this as any).os.stream.connectToChannel('hashtag', { + q: this.tagTl.query + }); this.connection.on('note', this.onNote); this.fetch();