Merge branch 'master' of github.com:mitmproxy/mitmproxy

This commit is contained in:
Maximilian Hils
2015-03-26 18:17:36 +01:00
9 changed files with 101 additions and 28 deletions

View File

@@ -242,7 +242,7 @@ class ServerPlaybackState:
]
if not self.ignore_content:
form_contents = r.get_form_urlencoded()
form_contents = r.get_form()
if self.ignore_payload_params and form_contents:
key.extend(
p for p in form_contents
@@ -775,6 +775,8 @@ class FlowMaster(controller.Master):
if all(e):
self.shutdown()
self.client_playback.tick(self)
if self.client_playback.done():
self.client_playback = None
return super(FlowMaster, self).tick(q, timeout)