From 1d582f5ad2746a836a9c5e4459a107c6f9dc7792 Mon Sep 17 00:00:00 2001 From: syuilo Date: Wed, 10 Oct 2018 20:58:42 +0900 Subject: [PATCH] Fix syntax error --- src/client/app/common/views/components/messaging-room.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/client/app/common/views/components/messaging-room.vue b/src/client/app/common/views/components/messaging-room.vue index 55aafc3ee..8b9a7e836 100644 --- a/src/client/app/common/views/components/messaging-room.vue +++ b/src/client/app/common/views/components/messaging-room.vue @@ -71,7 +71,7 @@ export default Vue.extend({ }, mounted() { - this.connection =((this as any).os.stream.connectToChannel('messaging', { otherparty: this.user.id }); + this.connection = (this as any).os.stream.connectToChannel('messaging', { otherparty: this.user.id }); this.connection.on('message', this.onMessage); this.connection.on('read', this.onRead);