Re-enable noise supression

It's massively useful. In the long run we should make it configurable
and save it in local storage.
This commit is contained in:
¯\_(ツ)_/¯ 2021-03-22 16:57:10 +01:00 committed by Thomas Basler
parent 03884eabca
commit 7ab3d827ba
1 changed files with 1 additions and 1 deletions

View File

@ -23,7 +23,7 @@ const audioConstraint: MediaTrackConstraints = {
// TODO: Make these values configurable in the game settings menu and store them in local storage
autoGainControl: false,
echoCancellation: true,
noiseSuppression: false
noiseSuppression: true
};
export type UpdatedLocalStreamCallback = (media: MediaStream|null) => void;