mirror of
https://github.com/Grasscutters/mitmproxy.git
synced 2024-11-22 15:37:45 +00:00
[web] fix timing display for keepalive connections
see https://discourse.mitmproxy.org/t/mitmweb-details-tab-timing/848/3
This commit is contained in:
parent
05ae3460c0
commit
de5dd19297
@ -119,7 +119,7 @@ export function TimeColumn({ flow }) {
|
|||||||
return (
|
return (
|
||||||
<td className="col-time">
|
<td className="col-time">
|
||||||
{flow.response ? (
|
{flow.response ? (
|
||||||
formatTimeDelta(1000 * (flow.response.timestamp_end - flow.server_conn.timestamp_start))
|
formatTimeDelta(1000 * (flow.response.timestamp_end - flow.request.timestamp_start))
|
||||||
) : (
|
) : (
|
||||||
'...'
|
'...'
|
||||||
)}
|
)}
|
||||||
|
Loading…
Reference in New Issue
Block a user