diff utilities/json-cli.cpp @ 24:533ca5ca3404

More on reading and writing json messages
author Chris Cannam <c.cannam@qmul.ac.uk>
date Mon, 23 May 2016 16:09:25 +0100
parents 913fc1d3710a
children 55d69b26d4db
line wrap: on
line diff
--- a/utilities/json-cli.cpp	Fri May 20 18:05:02 2016 +0100
+++ b/utilities/json-cli.cpp	Mon May 23 16:09:25 2016 +0100
@@ -160,8 +160,8 @@
 	throw VampJson::Failure("invalid request: " + err);
     }
 
-    if (!j["verb"].is_string()) {
-	throw VampJson::Failure("verb expected in request");
+    if (!j["type"].is_string()) {
+	throw VampJson::Failure("type expected in request");
     }
 
     if (!j["content"].is_null() &&
@@ -169,7 +169,7 @@
 	throw VampJson::Failure("object expected for content");
     }
 
-    string verb = j["verb"].string_value();
+    string verb = j["type"].string_value();
     Json content = j["content"];
     Json result;