Mercurial > hg > piper-cpp
diff json/VampJson.h @ 59:77833938f0f8
Tidy
author | Chris Cannam <c.cannam@qmul.ac.uk> |
---|---|
date | Mon, 19 Sep 2016 15:52:38 +0100 |
parents | 7aec704705c7 |
children | 8a4bcb3dc3a6 85ec33975434 |
line wrap: on
line diff
--- 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) {