mirror of
https://github.com/Grasscutters/mitmproxy.git
synced 2025-02-01 07:49:10 +00:00
parent
5c33f6784b
commit
800af34763
@ -201,7 +201,7 @@ class FlowView(common.WWrap):
|
||||
def wrap_body(self, active, body):
|
||||
parts = []
|
||||
|
||||
if self.flow.intercepting and not self.flow.request.acked:
|
||||
if self.flow.intercepting and not self.flow.request.reply.acked:
|
||||
qt = "Request intercepted"
|
||||
else:
|
||||
qt = "Request"
|
||||
@ -210,7 +210,7 @@ class FlowView(common.WWrap):
|
||||
else:
|
||||
parts.append(self._tab(qt, "heading_inactive"))
|
||||
|
||||
if self.flow.intercepting and self.flow.response and not self.flow.response.acked:
|
||||
if self.flow.intercepting and self.flow.response and not self.flow.response.reply.acked:
|
||||
st = "Response intercepted"
|
||||
else:
|
||||
st = "Response"
|
||||
|
Loading…
Reference in New Issue
Block a user