fix very fatal issue

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

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

Loading…
Cancel
Save