else if on new line

This commit is contained in:
anschrammh 2022-04-15 08:55:25 +02:00
parent f1d6fddd0d
commit 4296eeac28

View File

@ -512,7 +512,8 @@ class WEBServer : public TCPServer<T>, public HttpConstants
if(ref->HRM == UNDEFINED)
{
return (*(ref->apiRoutine))(client->_httpRequestData, &(client->_client), ref->pData);
}else if(ref->HRM == client->_httpRequestData.HRM)
}
else if(ref->HRM == client->_httpRequestData.HRM)
{
return (*(ref->apiRoutine))(client->_httpRequestData, &(client->_client), ref->pData);
}