Fix attempt - still chat issues when tabs are not reloaded after live game start
[vchess.git] / client / src / components / Chat.vue
index c7f63cf..2dc6842 100644 (file)
@@ -23,7 +23,9 @@ export default {
     };
   },
   created: function() {
+    const curMsgListener = this.st.conn.onmessage; //from Game or Hall
     const socketMessageListener = msg => {
+      curMsgListener(msg);
       const data = JSON.parse(msg.data);
       if (data.code == "newchat") //only event at this level
       {