yangjie #11

Merged
yangqiang merged 6 commits from yangjie into master 2024-09-25 11:45:55 +08:00
1 changed files with 4 additions and 1 deletions
Showing only changes of commit 1c3107c1f7 - Show all commits

View File

@ -753,7 +753,10 @@ const Meeting: React.FC = () => {
setCurrentEffective(0)
break;
default:
setCurrentEffective(isNetwork ? 4 : 0)
setIsNetwork(res => {
setCurrentEffective(res ? 4 : 0)
return res
})
break;
}
}