Skip to content

Commit

Permalink
revert to using start timestamp
Browse files Browse the repository at this point in the history
If the call isn't connected there might not be an answer timestamp, duh.
  • Loading branch information
shimaore committed May 23, 2016
1 parent d16eccf commit 2e7e1ab
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/common.coffee
Expand Up @@ -32,7 +32,7 @@ global_call = (row) ->
g3 = $ """
<div class="call #{v.ccnq_direction}">
<a href="/_utils/document.html?cdrs/#{doc._id}">
#{time_of v.answer_uepoch}
#{time_of v.start_uepoch}
</a>
(#{v.ccnq_direction}, #{v.ccnq_profile})
#{v.ccnq_from_e164}#{v.ccnq_to_e164}
Expand All @@ -51,7 +51,7 @@ local_call = (row) ->
g3 = $ """
<div class="call #{v.ccnq_direction}">
<a href="/_utils/document.html?cdrs-client/#{doc._id}">
#{time_of v.answer_uepoch}
#{time_of v.start_uepoch}
</a>
(#{v.ccnq_direction})
<b>#{v.ccnq_from_e164}</b> → <b>#{v.ccnq_to_e164}</b>
Expand Down

0 comments on commit 2e7e1ab

Please sign in to comment.