1
0

Merge pull request #3069 from cuberite/FixHttpHeaderParsing

HTTP: Fixed header parsing.
This commit is contained in:
Mattes D 2016-03-03 16:37:39 +01:00
commit 39144480f5

View File

@ -152,6 +152,7 @@ void cHTTPIncomingRequest::AddHeader(const AString & a_Key, const AString & a_Va
{ {
m_AllowKeepAlive = true; m_AllowKeepAlive = true;
} }
Super::AddHeader(a_Key, a_Value);
} }