Skip to content

Commit

Permalink
fix: type used = instead of ===
Browse files Browse the repository at this point in the history
  • Loading branch information
olzzon committed May 21, 2019
1 parent c959bf0 commit c350927
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/utils/OscMixerConnection.js
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,7 @@ export class OscMixerConnection {
) {
return true;
} else if (
cmdArray[1] = "" &&
cmdArray[1] === "" &&
message.length >= command.replace("{channel}", "").length
) {
return true;
Expand Down

0 comments on commit c350927

Please sign in to comment.