Ayush Mukherjee 4 years ago
parent 5ca90f131a
commit 2d9a34f8bc

@ -76,7 +76,7 @@ const fanoutMsg = (channel, data) => {
data, data,
} }
connections[k].connection.send(JSON.stringify(d)) connections[k].connection.send(JSON.stringify(d))
} else if (connections[k].events.indexOf('streams:full') !== -1) { if (connections[k].events.indexOf('streams:full') !== -1) {
const m = await crud['streams'].getAllPop() const m = await crud['streams'].getAllPop()
const d = { const d = {
event: 'streams:full', event: 'streams:full',
@ -84,6 +84,7 @@ const fanoutMsg = (channel, data) => {
} }
connections[k].connection.send(JSON.stringify(d)) connections[k].connection.send(JSON.stringify(d))
} }
}
}) })
} }

Loading…
Cancel
Save