mirror of
https://github.com/signalwire/freeswitch.git
synced 2025-04-22 19:29:54 +00:00
FS-8839 - [verto_communicator] Fix screenshare when caller is transferred to another conference.
This commit is contained in:
parent
0bdf4b83da
commit
a0841e8606
@ -105,7 +105,15 @@
|
|||||||
verto.screenshareHangup();
|
verto.screenshareHangup();
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
if (verto.data.conf) {
|
||||||
|
console.log('Screenshare inside conferece: ', verto.data.conf);
|
||||||
|
// Setting the destination of the screenshare call as the conference
|
||||||
|
// number we last joined
|
||||||
|
verto.screenshare(verto.data.conf.params.laData.laName);
|
||||||
|
}
|
||||||
|
else {
|
||||||
verto.screenshare(storage.data.called_number);
|
verto.screenshare(storage.data.called_number);
|
||||||
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
function buildCanvasesData() {
|
function buildCanvasesData() {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user