buggy servers

This commit is contained in:
Adam D. Ruppe 2022-07-27 11:13:32 -04:00
parent 04afca2079
commit fd749579ee
1 changed files with 2 additions and 1 deletions

View File

@ -1721,6 +1721,7 @@ class HttpRequest {
and btw it should prolly just have evnet source as a pre-packaged thing.
+/
} catch (Exception e) {
debug(arsd_http2_verbose) { import std.stdio; writeln(e); }
request.state = HttpRequest.State.aborted;
request.responseData.code = 4;
request.responseData.codeText = e.msg;
@ -1861,7 +1862,7 @@ class HttpRequest {
break;
case "Content-Length":
case "content-length":
bodyReadingState.contentLengthRemaining = to!int(value);
bodyReadingState.contentLengthRemaining = to!int(value.strip);
break;
case "Transfer-Encoding":
case "transfer-encoding":