feat: enable auto gain control by default for new users

This commit is contained in:
Jannis Braun
2026-03-05 00:19:39 +01:00
parent d0b0441f81
commit 09b9d1d55a
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -22,7 +22,7 @@ export class AudioManager {
private soundBuffers: Map<string, AudioBuffer> = new Map();
private voiceEchoCancellation = true;
private voiceNoiseSuppression = true;
private voiceAutoGainControl = false;
private voiceAutoGainControl = true;
private streamGeneration = 0;
private inputSwitchChain: Promise<MediaStream | null> = Promise.resolve(null);
private rnnoiseNode: AudioWorkletNode | null = null;