From e4f57d216f0e9859340159bf203ccdae23afc6cb Mon Sep 17 00:00:00 2001 From: yj <1336058017@qq.com> Date: Tue, 25 Feb 2025 09:42:16 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BC=98=E5=8C=96?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pages/meeting/index.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pages/meeting/index.ts b/pages/meeting/index.ts index 7a4e617..cf43fc6 100644 --- a/pages/meeting/index.ts +++ b/pages/meeting/index.ts @@ -297,7 +297,7 @@ Page({ const isShare = this.data.roomUserList.find(item => item.shareSrc) const item = getMaxObject(this.data.audioList) const user = this.data.roomUserList.find(row => item.uid === row.uid) - if (this.data.currentUid !== item.uid && !isShare && (user && user.isRoom)) { + if (this.data.currentUid !== item.uid && !isShare && (user && user.isRoom) && item.volumeNumber > 0) { this.setData({ currentUid: item.uid }) @@ -399,7 +399,7 @@ Page({ isAutoApplySpeakTime = '' } if (isSpeakTime) { - clearTimeout(isSpeakTime) + clearInterval(isSpeakTime) isSpeakTime = '' } },