Browse Source

Update httplib.h

If no "Content-Length" is sent in the response-header the body is always empty #16
Constantin 8 years ago
parent
commit
57af6277b8
1 changed files with 1 additions and 1 deletions
  1. 1 1
      httplib.h

+ 1 - 1
httplib.h

@@ -1081,7 +1081,7 @@ inline bool Client::process_request(Stream& strm, const Request& req, Response&
         return false;
         return false;
     }
     }
     if (req.method != "HEAD") {
     if (req.method != "HEAD") {
-        if (!detail::read_content(strm, res, false)) {
+        if (!detail::read_content(strm, res, true)) {
             return false;
             return false;
         }
         }
     }
     }