We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents d2e39a5 + f176a48 commit 450c805Copy full SHA for 450c805
1 file changed
internal/modules/connector/module.go
@@ -50,7 +50,7 @@ func (m *Module) Start() error {
50
log.Println("[Connector] Audio IPC Out is ENABLED")
51
m.audioOutChan = make(chan []byte, 1024)
52
// Volume is 100 for IPC out. Similar to SRT but we pipe to UDS.
53
- m.connectorMixer = audio.NewMixer("Connector", 100, false, audio.ConnectorChannel, m.audioOutChan)
+ m.connectorMixer = audio.NewMixer("Connector", 100, true, audio.ConnectorChannel, m.audioOutChan)
54
if err := m.connectorMixer.Start(); err != nil {
55
log.Printf("[Connector] Mixer start error: %v", err)
56
}
0 commit comments