We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f2aa42d commit 1849945Copy full SHA for 1849945
1 file changed
source/gameanalytics/GAHTTPApi.cpp
@@ -364,9 +364,9 @@ namespace gameanalytics
364
logging::GALogger::d("sdk error content : %s", s.toString().c_str());;
365
366
// if not 200 result
367
- if (statusCode != 200)
+ if (statusCode != 200 && statusCode != 204)
368
{
369
- logging::GALogger::d("sdk error failed. response code not 200. status code: %u", CURLE_OK);
+ logging::GALogger::d("sdk error failed. response code not 200 or 204. status code: %u", CURLE_OK);
370
return;
371
}
372
0 commit comments