yangjie #33

Merged
yangqiang merged 22 commits from yangjie into master 2024-11-04 13:57:51 +08:00
1 changed files with 6 additions and 6 deletions
Showing only changes of commit d11e7b351b - Show all commits

View File

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