소스 검색

Fixes isMuted check.

j8
damencho 9 년 전
부모
커밋
b08308e5e4
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1
    1
      modules/RTC/LocalStream.js

+ 1
- 1
modules/RTC/LocalStream.js 파일 보기

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

Loading…
취소
저장