Merge pull request #2842 from mitmproxy/web-timings

[web] fix timing display for keepalive connections
This commit is contained in:
Maximilian Hils 2018-02-07 14:18:17 +01:00 committed by GitHub
commit 326bb546da
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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))
) : (
'...'
)}