Use NsIsSuccessHttpCode() for status code checking

This commit is contained in:
okvdai
2023-06-20 20:15:47 +02:00
parent e1d5801d9a
commit ff06daefae
@@ -20,7 +20,7 @@ bool function pulseRequestData(string givenURL, table parameterTable, string tab
table<string, array<string> > requestTable table<string, array<string> > requestTable
void functionref (HttpRequestResponse) onSuccess = void function(HttpRequestResponse response) : (givenURL, parameterTable, requestTable, tablepath) void functionref (HttpRequestResponse) onSuccess = void function(HttpRequestResponse response) : (givenURL, parameterTable, requestTable, tablepath)
{ {
if(response.statusCode == 200 || response.statusCode == 201){ if (NSIsSuccessHttpCode(response.statusCode)){
table DecodedJSON = DecodeJSON(response.body) table DecodedJSON = DecodeJSON(response.body)
if ("map" in parameterTable) if ("map" in parameterTable)
{ {