Skip to content

Commit

Permalink
🐞 fix(AudioBus): AudioBus M
Browse files Browse the repository at this point in the history
Audio du master qui ce mettait pas en rouge car invertion dans le if
  • Loading branch information
vincentberry committed Mar 18, 2024
1 parent 512dbdf commit 2078e37
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/public/assets/js/processAudioSources.js
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ function getAudioSourceHTML(audioSource) {
let active = 'false';

for (let i = 0; i < audiobusses.length; i++) {
if (audiobusses[i] === activatedBus || (audiobusses[i] === "master" && activatedBus === "M")) {
if (audiobusses[i] === activatedBus || (audiobusses[i] === "M" && activatedBus === "master")) {
active = 'true';
}
}
Expand Down

0 comments on commit 2078e37

Please sign in to comment.