Merge pull request #35 from tommoor/patch-2

fix: Message publishing happens down incorrect broadcast channel
This commit is contained in:
Kevin Jahns
2020-10-18 17:54:38 +02:00
committed by GitHub

View File

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