From 0c1bef927b45ff794b3d193bd4a462f9718b65e6 Mon Sep 17 00:00:00 2001 From: Boris Grozev Date: Thu, 27 Oct 2016 13:27:00 -0500 Subject: [PATCH] Don't use no double non-positives. --- conference.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/conference.js b/conference.js index 024489c52..b0d7ae2dc 100644 --- a/conference.js +++ b/conference.js @@ -1304,7 +1304,7 @@ export default { // quality and will not depend on localVideo if it is missing room.connectionQuality.updateLocalStats( stats, - this.isConnectionInterrupted(), + !this.isConnectionInterrupted(), localVideo ? localVideo.videoType : undefined, localVideo ? localVideo.isMuted() : true, localVideo ? localVideo.resolution : null);