# HG changeset patch # User Chris Cannam # Date 1474296758 -3600 # Node ID 77833938f0f8ddcad06ad2b78612746141e73e92 # Parent c38e12d4bbdd2738c2208c313c5b1d9c662bb6e9 Tidy diff -r c38e12d4bbdd -r 77833938f0f8 json/VampJson.h --- a/json/VampJson.h Mon Sep 19 14:48:43 2016 +0100 +++ b/json/VampJson.h Mon Sep 19 15:52:38 2016 +0100 @@ -926,13 +926,11 @@ } static json11::Json - fromVampResponse_List(std::string errorText, - const Vamp::HostExt::ListResponse &resp) { + fromVampResponse_List(const Vamp::HostExt::ListResponse &resp) { json11::Json::object jo; jo["type"] = "list"; - jo["success"] = (errorText == ""); - jo["errorText"] = errorText; + jo["success"] = true; json11::Json::array arr; for (const auto &a: resp.pluginData) { diff -r c38e12d4bbdd -r 77833938f0f8 utilities/vampipe-convert.cpp --- a/utilities/vampipe-convert.cpp Mon Sep 19 14:48:43 2016 +0100 +++ b/utilities/vampipe-convert.cpp Mon Sep 19 15:52:38 2016 +0100 @@ -220,7 +220,7 @@ switch (rr.type) { case RRType::List: - j = VampJson::fromVampResponse_List("", rr.listResponse); + j = VampJson::fromVampResponse_List(rr.listResponse); break; case RRType::Load: j = VampJson::fromVampResponse_Load(rr.loadResponse, mapper);