mirror of
https://github.com/Grasscutters/mitmproxy.git
synced 2024-11-30 03:14:22 +00:00
Don't sort headers when displaying them in mitmproxy.
This commit is contained in:
parent
7e21ac0eb8
commit
1a963b91bb
@ -942,7 +942,7 @@ class ConsoleMaster(flow.FlowMaster):
|
|||||||
hdr = []
|
hdr = []
|
||||||
hdr.extend(
|
hdr.extend(
|
||||||
format_keyvals(
|
format_keyvals(
|
||||||
[(h+":", v) for (h, v) in sorted(hdrItems)],
|
[(h+":", v) for (h, v) in hdrItems],
|
||||||
key = "header",
|
key = "header",
|
||||||
val = "text"
|
val = "text"
|
||||||
)
|
)
|
||||||
|
Loading…
Reference in New Issue
Block a user