fixed some stuff

This commit is contained in:
2026-01-09 19:55:37 +02:00
parent 41aebdf8e8
commit 87448510a2
2 changed files with 9 additions and 1 deletions

View File

@@ -239,7 +239,7 @@ HTTPResponse_t CHTTPClient::ParseResponse( const char *szMessage, uint32_t uData
response.m_params = CUtlBuffer<HTTPHeaderParam_t>(headers.GetSize());
for (int i = 0; i < headers.GetSize(); i++ )
{
response.m_params[i] = headers[i];
response.m_params.operator[](i) = headers.operator[](i);
}
response.m_message = data;
response.m_bIsComplete = true;