main v1.4.5
Ayush Mukherjee 4 years ago
parent fd4cbd01e0
commit 1ffed1c220

@ -38,7 +38,11 @@ const handleMsg = async (msg, id) => {
dm.event = 'streams:full'
dm.data = await crud[channel].getAllPop()
}
connections[id]?.connection?.send(JSON.stringify(dm))
try {
connections[id].connection.send(JSON.stringify(dm))
} catch (e) {
console.warn(e)
}
} else if (d.hasOwnProperty('event') && channelEvents.indexOf(d.event) !== -1) {
const ev = d.event.split(':')
const channel = ev[0]

Loading…
Cancel
Save