Die in OCS v1.php on exception
Signed-off-by: Lukas Reschke <lukas@statuscode.ch>
This commit is contained in:
parent
b0c1460a1d
commit
00f135d320
|
@ -65,8 +65,10 @@ try {
|
||||||
} catch (MethodNotAllowedException $e) {
|
} catch (MethodNotAllowedException $e) {
|
||||||
OC_API::setContentType();
|
OC_API::setContentType();
|
||||||
OC_Response::setStatus(405);
|
OC_Response::setStatus(405);
|
||||||
} catch (\OC\OCS\Exception $ex) {
|
exit();
|
||||||
|
} catch (Exception $ex) {
|
||||||
OC_API::respond($ex->getResult(), OC_API::requestedFormat());
|
OC_API::respond($ex->getResult(), OC_API::requestedFormat());
|
||||||
|
exit();
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
|
Loading…
Reference in New Issue