Fix kostya<yyjson> issue

This commit is contained in:
John Keiser 2021-01-04 15:32:03 -08:00
parent 680cd6df34
commit 065ea00066
2 changed files with 3 additions and 3 deletions

View File

@ -31,7 +31,7 @@ public:
yyjson_val *root = yyjson_doc_get_root(doc); yyjson_val *root = yyjson_doc_get_root(doc);
if (!yyjson_is_obj(root)) { return false; } if (!yyjson_is_obj(root)) { return false; }
yyjson_val *coords = yyjson_obj_get(root, "coordinates"); yyjson_val *coords = yyjson_obj_get(root, "coordinates");
if (!yyjson_is_obj(coords)) { return false; } if (!yyjson_is_arr(coords)) { return false; }
size_t idx, max; size_t idx, max;
yyjson_val *coord; yyjson_val *coord;