maybe fix chat?
This commit is contained in:
parent
c0d4ec680d
commit
fd7489976d
1 changed files with 3 additions and 1 deletions
|
@ -221,7 +221,9 @@ const app = new Vue({
|
||||||
this.okNotification('Connection lost.');
|
this.okNotification('Connection lost.');
|
||||||
};
|
};
|
||||||
this.gateway.connect(this.loggedInUser.token);
|
this.gateway.connect(this.loggedInUser.token);
|
||||||
this.gateway.socket.on('message', this.processMessage);
|
this.gateway.socket.on('message', (e) => {
|
||||||
|
this.processMessage(e);
|
||||||
|
});
|
||||||
},
|
},
|
||||||
processMessage: async function(messageObject) {
|
processMessage: async function(messageObject) {
|
||||||
if (!this.messages[messageObject.category._id]) this.$set(this.messages, messageObject.category._id, []);
|
if (!this.messages[messageObject.category._id]) this.$set(this.messages, messageObject.category._id, []);
|
||||||
|
|
Reference in a new issue