diff vamp-server/convert.cpp @ 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 60dc013bd69c
line wrap: on
line diff
--- a/vamp-server/convert.cpp	Tue Jan 31 22:21:51 2017 +0000
+++ b/vamp-server/convert.cpp	Tue Jan 31 22:47:12 2017 +0000
@@ -295,8 +295,10 @@
     VampJson::BufferSerialisation serialisation =
         VampJson::BufferSerialisation::Array;
 
-    rr.success = j["success"].bool_value();
-    rr.errorText = j["errorText"].string_value();
+    const bool isSuccess = j["result"].is_object();
+    const bool isError = j["error"].is_object();
+    rr.success = isSuccess;
+    rr.errorText = isError ? j["error"]["message"].string_value() : "";
 
     switch (rr.type) {