Mercurial > hg > piper-cpp
diff utilities/vampipe-convert.cpp @ 42:91f5c92d3bf7
Some JSON fixes and a quick test program
author | Chris Cannam <c.cannam@qmul.ac.uk> |
---|---|
date | Tue, 23 Aug 2016 12:04:49 +0100 |
parents | 0b48b10140bb |
children | a98ef4c2616b |
line wrap: on
line diff
--- a/utilities/vampipe-convert.cpp Tue Aug 23 11:17:01 2016 +0100 +++ b/utilities/vampipe-convert.cpp Tue Aug 23 12:04:49 2016 +0100 @@ -47,7 +47,7 @@ if (!j["type"].is_string()) { throw VampJson::Failure("string expected for type field"); } - if (!j["content"].is_object()) { + if (!j["content"].is_null() && !j["content"].is_object()) { throw VampJson::Failure("object expected for content field"); } return j;