Quellcode durchsuchen

Fixes isMuted check.

j8
damencho vor 10 Jahren
Ursprung
Commit
b08308e5e4
1 geänderte Dateien mit 1 neuen und 1 gelöschten Zeilen
  1. 1
    1
      modules/RTC/LocalStream.js

+ 1
- 1
modules/RTC/LocalStream.js Datei anzeigen

@@ -110,7 +110,7 @@ LocalStream.prototype.isMuted = function () {
110 110
     if (this.isAudioStream()) {
111 111
         tracks = this.stream.getAudioTracks();
112 112
     } else {
113
-        if (this.isActive())
113
+        if (!this.isActive())
114 114
             return true;
115 115
         tracks = this.stream.getVideoTracks();
116 116
     }

Laden…
Abbrechen
Speichern