Skip to content

Commit

Permalink
PISTON-731: Changed duration_seconds in cdr to int from string to mat…
Browse files Browse the repository at this point in the history
…ch (2600hz#5650)

all other 'seconds' value types
  • Loading branch information
bradfordben authored and k-anderson committed Apr 3, 2019
1 parent 63022fc commit 5526245
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion applications/ecallmgr/src/ecallmgr_call_events.erl
Original file line number Diff line number Diff line change
Expand Up @@ -707,7 +707,7 @@ specific_call_event_props(<<"CHANNEL_DESTROY">>, _, Props) ->
,{<<"From-Uri">>, props:get_value(<<"variable_sip_from_uri">>, Props)}
,{<<"Remote-SDP">>, props:get_value(<<"variable_switch_r_sdp">>, Props)}
,{<<"Local-SDP">>, props:get_value(<<"variable_rtp_local_sdp_str">>, Props)}
,{<<"Duration-Seconds">>, props:get_value(<<"variable_duration">>, Props)}
,{<<"Duration-Seconds">>, props:get_integer_value(<<"variable_duration">>, Props)}
,{<<"Billing-Seconds">>, get_billing_seconds(Props)}
,{<<"Ringing-Seconds">>, get_ringing_seconds(Props)}
,{<<"User-Agent">>, props:get_value(<<"variable_sip_user_agent">>, Props)}
Expand Down

0 comments on commit 5526245

Please sign in to comment.