소스 검색

fix: 语音通话会听到自己声音的bug

xsx 3 달 전
부모
커밋
724291446b
1개의 변경된 파일1개의 추가작업 그리고 0개의 파일을 삭제
  1. 1 0
      im-web/src/components/rtc/RtcPrivateVideo.vue

+ 1 - 0
im-web/src/components/rtc/RtcPrivateVideo.vue

@@ -298,6 +298,7 @@ export default {
           this.camera.openAudio().then((stream) => {
             this.localStream = stream;
             this.$refs.localVideo.srcObject = stream;
+            this.$refs.localVideo.muted = true;
             resolve(stream);
           }).catch((e) => {
             this.$message.error("打开麦克风失败")