diff options
| -rw-r--r-- | mitmproxy/addons/view.py | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/mitmproxy/addons/view.py b/mitmproxy/addons/view.py index d2ab75f3..3a0587b0 100644 --- a/mitmproxy/addons/view.py +++ b/mitmproxy/addons/view.py @@ -102,7 +102,7 @@ orders = [  class View(collections.Sequence):      def __init__(self):          super().__init__() -        self._store = {} +        self._store = collections.OrderedDict()          self.filter = matchall          # Should we show only marked flows?          self.show_marked = False  | 
