avoid assert fail on an ok with no additional headers

This commit is contained in:
Adam D. Ruppe 2021-06-07 10:21:55 -04:00
parent 3f30effea7
commit bd5e49f8f4
1 changed files with 2 additions and 1 deletions

View File

@ -1655,7 +1655,8 @@ class HttpRequest {
responseData.headers[$-1] ~= data[position];
}
parseLastHeader();
if(responseData.headers.length)
parseLastHeader();
data = data[position .. $];
}