Merge pull request #1031 in FS/freeswitch from ~THEHUNMONKGROUP/freeswitch:feature/FS-9683-pass-call-recovery-status-to-verto to master

* commit '34e491ffa1dca32846d1e0fb97e71f5ac7c34d22':
  FS-9683: Pass call recovery status to Verto
This commit is contained in:
Mike Jerris
2017-08-10 18:41:39 +00:00
6 changed files with 30 additions and 1 deletions

View File

@@ -639,6 +639,11 @@ vertoService.service('verto', ['$rootScope', '$cookieStore', '$location', 'stora
case $.verto.enum.message.display:
$rootScope.$apply(function() {});
break;
case $.verto.enum.message.clientReady:
$rootScope.$emit('clientReady', {
reattached_sessions: params.reattached_sessions,
});
break;
default:
console.warn('Got a not implemented message:', msg, dialog, params);
break;