Fix error handling on config package delete

This commit is contained in:
Michael Friedrich 2018-04-12 19:24:08 +02:00
parent 5e8321f3a4
commit b53685db59
1 changed files with 2 additions and 1 deletions

View File

@ -135,12 +135,13 @@ void ConfigPackagesHandler::HandleDelete(const ApiUser::Ptr& user, HttpRequest&
} catch (const std::exception& ex) {
HttpUtility::SendJsonError(response, params, 500, "Failed to delete package '" + packageName + "'.",
DiagnosticInformation(ex));
return;
}
Dictionary::Ptr result1 = new Dictionary({
{ "code", 200 },
{ "package", packageName },
{ "status", "Created package." }
{ "status", "Deleted package." }
});
Dictionary::Ptr result = new Dictionary({