mirror of
https://github.com/Grasscutters/mitmproxy.git
synced 2024-11-23 00:01:36 +00:00
Merge pull request #2842 from mitmproxy/web-timings
[web] fix timing display for keepalive connections
This commit is contained in:
commit
326bb546da
@ -119,7 +119,7 @@ export function TimeColumn({ flow }) {
|
||||
return (
|
||||
<td className="col-time">
|
||||
{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