Browse Source

UI-1187: fixed the call log arrows so that it now properly reflects whether the call is off-net (inbound) or on-net(outbound)

4.3
Maxime Roux 11 years ago
parent
commit
919ed4684f
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      submodules/callLogs/callLogs.js

+ 1
- 1
submodules/callLogs/callLogs.js View File

@ -299,7 +299,7 @@ define(function(require){
toNumber: cdr.callee_id_number || ("request" in cdr) ? cdr.request.replace(/@.*/, '') : cdr.to.replace(/@.*/, ''),
duration: durationMin + ":" + durationSec,
hangupCause: cdr.hangup_cause,
isOutboundCall: ("authorizing_id" in cdr),
isOutboundCall: ("authorizing_id" in cdr && cdr.authorizing_id.length > 0),
mailtoLink: "mailto:support@2600hz.com"
+ "?subject=Call Report: " + cdr.call_id
+ "&body=Please describe the details of the issue:%0D%0A%0D%0A"


Loading…
Cancel
Save