Merge branch 'developer' of bitbucket.org:equilibriumito/gabinete-digital into developer

This commit is contained in:
Peter Maquiran
2022-02-08 17:44:31 +01:00
12 changed files with 93 additions and 44 deletions
+2 -2
View File
@@ -657,11 +657,11 @@ updateRoomEventss(roomId, collection:string, funx: Function, ) {
for (const [key, item] of Object.entries(this.wsMsgQueue)) {
if(item.loginRequired == true && this.isLogin == true) {
console.log('run msgQueue ', key)
//console.log('run msgQueue ', key)
this.ws.send(item);
delete this.wsMsgQueue[key]
} else if(item.loginRequired == false) {
console.log('run msgQueue ', key)
//console.log('run msgQueue ', key)
this.ws.send(item);
delete this.wsMsgQueue[key]
}