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:
Ítalo Rossi 2015-09-26 15:21:57 -05:00
commit c266c5e6b3
1 changed files with 2 additions and 2 deletions

View File

@ -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);
});
});