From 724291446b01ab5ee49b07de23bd9bb38db76b59 Mon Sep 17 00:00:00 2001 From: xsx <825657193@qq.com> Date: Tue, 9 Dec 2025 22:44:26 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E8=AF=AD=E9=9F=B3=E9=80=9A=E8=AF=9D?= =?UTF-8?q?=E4=BC=9A=E5=90=AC=E5=88=B0=E8=87=AA=E5=B7=B1=E5=A3=B0=E9=9F=B3?= =?UTF-8?q?=E7=9A=84bug?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- im-web/src/components/rtc/RtcPrivateVideo.vue | 1 + 1 file changed, 1 insertion(+) diff --git a/im-web/src/components/rtc/RtcPrivateVideo.vue b/im-web/src/components/rtc/RtcPrivateVideo.vue index 70f0ec8..7e79c77 100644 --- a/im-web/src/components/rtc/RtcPrivateVideo.vue +++ b/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("打开麦克风失败")