mirror of
https://github.com/signalwire/freeswitch.git
synced 2025-07-13 18:47:44 +00:00
FS-8221 [verto_communicator] Fix number in call history
This commit is contained in:
parent
90124856d4
commit
555be3733b
@ -349,11 +349,11 @@
|
|||||||
|
|
||||||
$scope.answerCall();
|
$scope.answerCall();
|
||||||
storage.data.called_number = data;
|
storage.data.called_number = data;
|
||||||
CallHistory.add(number, 'inbound', true);
|
CallHistory.add(data, 'inbound', true);
|
||||||
$location.path('/incall');
|
$location.path('/incall');
|
||||||
}, function() {
|
}, function() {
|
||||||
$scope.declineCall();
|
$scope.declineCall();
|
||||||
CallHistory.add(number, 'inbound', false);
|
CallHistory.add(data, 'inbound', false);
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user