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
commit cc418fb3b4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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)
})
}
}