mirror of
https://github.com/signalwire/freeswitch.git
synced 2025-04-15 16:39:14 +00:00
FS-8545 add missing code to deal with screen share part
This commit is contained in:
parent
8293dd03d0
commit
91554607da
@ -471,15 +471,17 @@ vertoService.service('verto', ['$rootScope', '$cookieStore', '$location', 'stora
|
|||||||
if (params.pvtData) {
|
if (params.pvtData) {
|
||||||
switch (params.pvtData.action) {
|
switch (params.pvtData.action) {
|
||||||
case "conference-liveArray-join":
|
case "conference-liveArray-join":
|
||||||
if (!params.pvtData.secondScreen && !params.pvtData.screenShare && !params.pvtData.videoOnly) {
|
if (!params.pvtData.screenShare && !params.pvtData.videoOnly) {
|
||||||
console.log("conference-liveArray-join");
|
console.log("conference-liveArray-join");
|
||||||
stopConference();
|
stopConference();
|
||||||
startConference(v, dialog, params.pvtData);
|
startConference(v, dialog, params.pvtData);
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
case "conference-liveArray-part":
|
case "conference-liveArray-part":
|
||||||
console.log("conference-liveArray-part");
|
if (!params.pvtData.screenShare && !params.pvtData.videoOnly) {
|
||||||
stopConference();
|
console.log("conference-liveArray-part");
|
||||||
|
stopConference();
|
||||||
|
}
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user