diff options
Diffstat (limited to 'libmproxy')
-rw-r--r-- | libmproxy/flow.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libmproxy/flow.py b/libmproxy/flow.py index dd43a24f..5f5cad4c 100644 --- a/libmproxy/flow.py +++ b/libmproxy/flow.py @@ -538,7 +538,7 @@ class Response(HTTPMsg): self.headers = ODictCaseless._from_state(state["headers"]) self.content = state["content"] self.timestamp = state["timestamp"] - self.cert = state["cert"] + self.cert = certutils.SSLCert.from_pem(state["cert"]) if state["cert"] else None def _get_state(self): return dict( |