Skip to content

Commit

Permalink
UI-1187: fixed the call log arrows so that it now properly reflects w…
Browse files Browse the repository at this point in the history
…hether the call is off-net (inbound) or on-net(outbound)
  • Loading branch information
mroux committed Mar 5, 2015
1 parent 69f02fe commit bad49c1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion submodules/callLogs/callLogs.js
Original file line number Diff line number Diff line change
Expand Up @@ -303,7 +303,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:[email protected]"
+ "?subject=Call Report: " + cdr.call_id
+ "&body=Please describe the details of the issue:%0D%0A%0D%0A"
Expand Down

0 comments on commit bad49c1

Please sign in to comment.