diff options
| -rw-r--r-- | client/src/leap/soledad/client/http_target/support.py | 3 | 
1 files changed, 3 insertions, 0 deletions
diff --git a/client/src/leap/soledad/client/http_target/support.py b/client/src/leap/soledad/client/http_target/support.py index 40e5eb55..fe91c5b1 100644 --- a/client/src/leap/soledad/client/http_target/support.py +++ b/client/src/leap/soledad/client/http_target/support.py @@ -53,6 +53,9 @@ class ReadBodyProtocol(_ReadBodyProtocol):          if exc_cls is not None:              message = respdic.get("message")              self.deferred.errback(exc_cls(message)) +        else: +            self.deferred.errback( +                errors.HTTPError(self.status, respdic, self.headers))      # ---8<--- end of snippet from u1db.remote.http_client      def connectionLost(self, reason):  | 
