diff --git a/src/utils/webrtc/VideoConstrainer.js b/src/utils/webrtc/VideoConstrainer.js index 1d4cadcdc60..cf43b81cb63 100644 --- a/src/utils/webrtc/VideoConstrainer.js +++ b/src/utils/webrtc/VideoConstrainer.js @@ -45,9 +45,9 @@ const QUALITY = { function VideoConstrainer(localMediaModel) { this._localMediaModel = localMediaModel - // By default the constraints used when getting the video try to get the - // highest quality - this._currentQuality = QUALITY.HIGH + // The current quality is undefined until the constraints are applied at + // least once. + this._currentQuality = undefined this._knownValidConstraintsForQuality = {} }