fix: Message publishing happens down incorrect broadcast channel

Missed in #12 refactor
This commit is contained in:
Tom Moor
2020-10-17 16:53:24 -07:00
committed by GitHub
parent 5a36d77d48
commit c0271b7cdc

View File

@@ -146,7 +146,7 @@ const broadcastMessage = (provider, buf) => {
} }
if (provider.bcconnected) { if (provider.bcconnected) {
provider.mux(() => { provider.mux(() => {
bc.publish(provider.url, buf) bc.publish(provider.bcChannel, buf)
}) })
} }
} }