Merge pull request #511 in FS/freeswitch from ~STEFAN_YOHANSSON/freeswitch:bugfix/FS-8221-call-history-rendering-is-not-correct to master
* commit '555be3733bf2ec93881f4ee90f426f19ab78ee6e': FS-8221 [verto_communicator] Fix number in call history
This commit is contained in:
commit
c266c5e6b3
|
@ -349,11 +349,11 @@
|
|||
|
||||
$scope.answerCall();
|
||||
storage.data.called_number = data;
|
||||
CallHistory.add(number, 'inbound', true);
|
||||
CallHistory.add(data, 'inbound', true);
|
||||
$location.path('/incall');
|
||||
}, function() {
|
||||
$scope.declineCall();
|
||||
CallHistory.add(number, 'inbound', false);
|
||||
CallHistory.add(data, 'inbound', false);
|
||||
});
|
||||
});
|
||||
|
||||
|
|
Loading…
Reference in New Issue