FIX: liveview_remote protocol missing agora

Change-Id: If3a46c67e139e3abc47dc672e32246eb6b59f9fd
Jira: STUDIO-10041
(cherry picked from commit 71d9d8969e4bf502adaa56f165fc857be7fe6f5a)
This commit is contained in:
chunmao.guo 2025-01-20 11:08:00 +08:00 committed by Noisyfox
parent 5246fc4c0c
commit 062d922beb

View file

@ -1643,7 +1643,7 @@ bool MachineObject::is_recording()
int MachineObject::get_liveview_remote()
{
if (is_support_agora) {
liveview_remote == LVR_None ? LVR_Agora : liveview_remote == LVR_Tutk ? LVR_TutkAgora : liveview_remote;
return liveview_remote == LVR_None ? LVR_Agora : liveview_remote == LVR_Tutk ? LVR_TutkAgora : liveview_remote;
}
return liveview_remote;
}