This commit is contained in:
yj 2024-11-01 11:46:19 +08:00
parent 380222bcfd
commit d11e7b351b
1 changed files with 6 additions and 6 deletions

View File

@ -974,12 +974,6 @@ const Meeting: React.FC = () => {
view: null,
channelId: connection.channelId,
});
setCurrentVideoId((res: any) => {
if (Number(res) === remoteUid) {
getShowUser();
}
return res
})
}
},
onAudioVolumeIndication: async (speakers: AudioVolumeInfo[]) => {
@ -1218,6 +1212,12 @@ const Meeting: React.FC = () => {
}
return res
})
setCurrentVideoId((res: any) => {
if (Number(res) === item.user.uid) {
getShowUser();
}
return res
})
break;
case 'OperAllMicr':
setRoomUserList((res: any) => {