FS-8088 [verto_communicator] Call conference destroy upon hangup and on event destroy to properly unsub from events.
This commit is contained in:
parent
230e636332
commit
b7fa8f3347
|
@ -416,6 +416,7 @@ vertoService.service('verto', ['$rootScope', '$cookieStore', '$location', 'stora
|
||||||
console.log('Has data.liveArray.');
|
console.log('Has data.liveArray.');
|
||||||
$rootScope.$emit('members.clear');
|
$rootScope.$emit('members.clear');
|
||||||
data.liveArray = null;
|
data.liveArray = null;
|
||||||
|
|
||||||
} else {
|
} else {
|
||||||
console.log('Doesn\'t found data.liveArray.');
|
console.log('Doesn\'t found data.liveArray.');
|
||||||
}
|
}
|
||||||
|
@ -502,6 +503,9 @@ vertoService.service('verto', ['$rootScope', '$cookieStore', '$location', 'stora
|
||||||
if (d.params.screenShare) {
|
if (d.params.screenShare) {
|
||||||
cleanShareCall(that);
|
cleanShareCall(that);
|
||||||
} else {
|
} else {
|
||||||
|
if (data.conf) {
|
||||||
|
data.conf.destroy();
|
||||||
|
}
|
||||||
cleanCall();
|
cleanCall();
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
@ -690,6 +694,11 @@ vertoService.service('verto', ['$rootScope', '$cookieStore', '$location', 'stora
|
||||||
|
|
||||||
data.call.hangup();
|
data.call.hangup();
|
||||||
|
|
||||||
|
if (data.conf) {
|
||||||
|
data.conf.destroy();
|
||||||
|
data.conf = null;
|
||||||
|
}
|
||||||
|
|
||||||
console.debug('The call was hangup.');
|
console.debug('The call was hangup.');
|
||||||
|
|
||||||
if (angular.isFunction(callback)) {
|
if (angular.isFunction(callback)) {
|
||||||
|
|
Loading…
Reference in New Issue