diff options
author | Matthew Shao <me@matshao.com> | 2017-11-22 14:26:20 +1100 |
---|---|---|
committer | Maximilian Hils <git@maximilianhils.com> | 2017-11-22 14:26:20 +1100 |
commit | 46901d1d55cb5bad86e17e093b85ade8111315aa (patch) | |
tree | bcf4b2df8e28e79f3b7a9b353cd090b50f650b62 | |
parent | 168c72a55f82d24c1dc332cb44a9fe4a0d57f8ce (diff) | |
download | mitmproxy-46901d1d55cb5bad86e17e093b85ade8111315aa.tar.gz mitmproxy-46901d1d55cb5bad86e17e093b85ade8111315aa.tar.bz2 mitmproxy-46901d1d55cb5bad86e17e093b85ade8111315aa.zip |
Fix #2635, mitmdump does not apply filter to saved data. (#2636)
-rw-r--r-- | mitmproxy/addons/save.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mitmproxy/addons/save.py b/mitmproxy/addons/save.py index 3dbef14e..5e739039 100644 --- a/mitmproxy/addons/save.py +++ b/mitmproxy/addons/save.py @@ -42,7 +42,7 @@ class Save: ) else: self.filt = None - if "save_stream_file" in updated: + if "save_stream_file" in updated or "save_stream_filter" in updated: if self.stream: self.done() if ctx.options.save_stream_file: |