yangjie #31

Merged
yangqiang merged 3 commits from yangjie into master 2024-10-30 14:29:28 +08:00
1 changed files with 2 additions and 2 deletions
Showing only changes of commit 9b41377055 - Show all commits

View File

@ -1746,13 +1746,13 @@ const Meeting: React.FC = () => {
setIsNetworkDisconnected(bool => { setIsNetworkDisconnected(bool => {
if (bool) { if (bool) {
meetingDisconnectedRef.current.changeModal(false) meetingDisconnectedRef.current.changeModal(false)
allUserLook(userItem.screenShareId, userItem.userName) allUserLook(userItem.uid, userItem.userName)
} }
return false return false
}) })
setIsScreenCapture(bool => { setIsScreenCapture(bool => {
if (bool) { if (bool) {
allUserLook(userItem.screenShareId, userItem.userName) allUserLook(userItem.uid, userItem.userName)
} }
return bool return bool
}) })