aboutsummaryrefslogtreecommitdiffstats
path: root/libmproxy
diff options
context:
space:
mode:
Diffstat (limited to 'libmproxy')
-rw-r--r--libmproxy/flow.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/libmproxy/flow.py b/libmproxy/flow.py
index 1826af3d..3d5a6a36 100644
--- a/libmproxy/flow.py
+++ b/libmproxy/flow.py
@@ -191,7 +191,7 @@ class ClientPlaybackState:
testing: Disables actual replay for testing.
"""
if self.flows and not self.current:
- n = self.flows.pop(0)
+ n = self.flows.pop(0).copy()
n.response = None
n.reply = controller.DummyReply()
self.current = master.handle_request(n)