aboutsummaryrefslogtreecommitdiffstats
path: root/libmproxy/flow.py
diff options
context:
space:
mode:
Diffstat (limited to 'libmproxy/flow.py')
-rw-r--r--libmproxy/flow.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/libmproxy/flow.py b/libmproxy/flow.py
index 718a3dcd..eed006b4 100644
--- a/libmproxy/flow.py
+++ b/libmproxy/flow.py
@@ -343,7 +343,7 @@ class State:
Add a request to the state. Returns the matching flow.
"""
f = Flow(req)
- self.flow_list.insert(0, f)
+ self.flow_list.append(f)
self.flow_map[req] = f
return f