fix very fatal issue

main v1.2.2
Ayush Mukherjee 4 years ago
parent de4ab6f395
commit eaea84fde0

@ -37,11 +37,13 @@ const recvUpdate = async (channel, data) => {
const sendInitial = async (id) => {
const c = connections[id]
const stream = await crud['streams'].getById(c.streamid)
c.connection.send(JSON.stringify({
event: 'streams:read',
data: stream,
}))
if (c.streamid !== null) {
const stream = await crud['streams'].getById(c.streamid)
c.connection.send(JSON.stringify({
event: 'streams:read',
data: stream,
}))
}
}
module.exports = {

Loading…
Cancel
Save