diff vamp-json/VampJson.h @ 176:60dc013bd69c

Fix handling of parsing json error responses from a server, and allow for re-writing them without changing the error message further.
author Lucas Thompson <dev@lucas.im>
date Tue, 31 Jan 2017 22:56:52 +0000
parents 7532233f8e49
children 1990dd9570d8
line wrap: on
line diff
--- a/vamp-json/VampJson.h	Tue Jan 31 22:54:08 2017 +0000
+++ b/vamp-json/VampJson.h	Tue Jan 31 22:56:52 2017 +0000
@@ -1298,7 +1298,8 @@
     static json11::Json
     fromError(std::string errorText,
               RRType responseType,
-              const json11::Json &id) {
+              const json11::Json &id,
+              bool writeVerbatimError = false) {
 
         json11::Json::object jo;
         markRPC(jo);
@@ -1315,7 +1316,7 @@
         json11::Json::object eo;
         eo["code"] = 0;
 
-        if (responseType == RRType::NotValid) {
+        if (responseType == RRType::NotValid || writeVerbatimError) {
             eo["message"] = errorText;
         } else {
             eo["message"] =