refactor success_object

This commit is contained in:
Armin Preiml 2018-06-30 10:38:16 +02:00
parent 659871de1e
commit 354648cc07

View file

@ -26,11 +26,7 @@ static bool success_object(json_object *result) {
return false; return false;
} }
if (!json_object_get_boolean(success)) { return json_object_get_boolean(success);
return false;
}
return true;
} }
// Iterate results array and return false if any of them failed // Iterate results array and return false if any of them failed