正在录制不在弹出是否录制会议
This commit is contained in:
parent
e492d0fcf9
commit
b96e5853a1
|
|
@ -341,6 +341,8 @@ const Meeting: React.FC = () => {
|
|||
const setting = await JSON.parse(storage.getItem('setting') as string);
|
||||
const stateInfo = await JSON.parse(storage.getItem('stateInfo') as string);
|
||||
if (stateInfo && setting.isRecordingTips && !recorder) {
|
||||
setRecorder((data: any) => {
|
||||
if (!data) {
|
||||
confirm({
|
||||
title: '提示',
|
||||
icon: <ExclamationCircleFilled />,
|
||||
|
|
@ -357,6 +359,9 @@ const Meeting: React.FC = () => {
|
|||
}
|
||||
})
|
||||
}
|
||||
return data
|
||||
})
|
||||
}
|
||||
}, 10000);
|
||||
getDesktopCapturerVideoTime = setInterval(() => {
|
||||
setSharedScreenItem((i: any) => {
|
||||
|
|
|
|||
Loading…
Reference in New Issue