fixing handling of unkown msgids
This commit is contained in:
parent
a853f223b5
commit
6b84679d35
1 changed files with 2 additions and 2 deletions
4
index.js
4
index.js
|
@ -65,10 +65,10 @@ socket.on('msgmgr:event', async (eventType, eventData) => {
|
|||
switch (eventType) {
|
||||
case 'status': {
|
||||
const [msgId, uuid, status] = eventData
|
||||
ingressMap[ msgId ][2].push(`${ uuid } is ${ status }`)
|
||||
if (!!ingressMap[msgId]) ingressMap[ msgId ][2].push(`${ uuid } is ${ status }`)
|
||||
} break;
|
||||
case 'read':
|
||||
ingressMap[ eventData ][2].push('read')
|
||||
if (!!ingressMap[ eventData ]) ingressMap[ eventData ][2].push('read')
|
||||
break;
|
||||
case 'response': {
|
||||
const [msgId, response] = eventData
|
||||
|
|
Loading…
Add table
Reference in a new issue