Skip to content

Commit

Permalink
fix: PFL should not mute channel
Browse files Browse the repository at this point in the history
  • Loading branch information
olzzon committed Nov 7, 2019
1 parent adfe39f commit 3c66960
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/utils/SSLMixerConnection.ts
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ export class SSLMixerConnection {

}

} else if (buffer[1] === 5 && buffer[2] === 255 && !lastWasAck) {
} else if (buffer[1] === 5 && buffer[2] === 255 && buffer[4] === 1 && !lastWasAck) {
lastWasAck = false
// MUTE ON/OFF
let commandHex = buffer.toString('hex')
Expand Down

0 comments on commit 3c66960

Please sign in to comment.