Skip to content

Commit

Permalink
fix: type - assigned true to pflOn instead of comparing in if ( = ins…
Browse files Browse the repository at this point in the history
…tead of === )
  • Loading branch information
olzzon committed May 30, 2019
1 parent acb3108 commit 83e0cba
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/utils/OscMixerConnection.ts
Original file line number Diff line number Diff line change
Expand Up @@ -268,7 +268,7 @@ export class OscMixerConnection {
}

updatePflState(channelIndex: number) {
if (this.store.channels[0].channel[channelIndex].pflOn = true) {
if (this.store.channels[0].channel[channelIndex].pflOn === true) {
this.sendOutMessage(
this.mixerProtocol.toMixer.PFL_ON.oscMessage,
channelIndex+1,
Expand Down

0 comments on commit 83e0cba

Please sign in to comment.