mirror of
https://github.com/Grasscutters/mitmproxy.git
synced 2024-11-23 00:01:36 +00:00
fix tcp.Address leftovers
this fixes the issue described in https://github.com/mitmproxy/mitmproxy/issues/2119#issuecomment-285067292
This commit is contained in:
parent
cb6240974d
commit
927b5707fe
@ -147,7 +147,7 @@ def response(flow):
|
|||||||
}
|
}
|
||||||
|
|
||||||
if flow.server_conn.connected():
|
if flow.server_conn.connected():
|
||||||
entry["serverIPAddress"] = str(flow.server_conn.ip_address.address[0])
|
entry["serverIPAddress"] = str(flow.server_conn.ip_address[0])
|
||||||
|
|
||||||
HAR["log"]["entries"].append(entry)
|
HAR["log"]["entries"].append(entry)
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user