Mercurial > hg > piper-cpp
diff vamp-json/VampJson.h @ 174:59c89b0e9375
Fix regression from old schema changes, regarding assessing whether a JSON response was successful
author | Lucas Thompson <dev@lucas.im> |
---|---|
date | Tue, 31 Jan 2017 22:47:12 +0000 |
parents | 0876b5e67afe |
children | 7532233f8e49 |
line wrap: on
line diff
--- a/vamp-json/VampJson.h Tue Jan 31 22:21:51 2017 +0000 +++ b/vamp-json/VampJson.h Tue Jan 31 22:47:12 2017 +0000 @@ -1109,11 +1109,11 @@ static bool successful(json11::Json j, std::string &err) { - if (!j["success"].is_bool()) { - err = "bool expected for success"; + if (!j["result"].is_object()) { + err = "result object expected for success"; return false; } - return j["success"].bool_value(); + return true; } static void