Skip to content

Commit

Permalink
Merge pull request #335 from bbc/fix/set-channel-update-mixerconnection
Browse files Browse the repository at this point in the history
fix: set-channel didn't update mixerconnection
  • Loading branch information
LindvedKrvang authored Sep 24, 2024
2 parents 8824740 + d3d8bba commit b96bd0f
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions server/src/utils/AutomationConnection.ts
Original file line number Diff line number Diff line change
Expand Up @@ -229,6 +229,12 @@ export class AutomationConnection {
faderIndex: ch - 1,
state: channelState,
})
mixerGenericConnection.updateOutLevel(ch - 1, -1)
mixerGenericConnection.updateInputGain(ch - 1)
mixerGenericConnection.updateInputSelector(ch - 1)
mixerGenericConnection.updateMuteState(ch - 1)
mixerGenericConnection.updateChannelName(ch - 1)
mixerGenericConnection.updateNextAux(ch - 1)
})
} else if (check('INJECT_COMMAND')) {
/*
Expand Down

0 comments on commit b96bd0f

Please sign in to comment.