mirror of
https://github.com/nextcloud/server.git
synced 2026-03-13 14:19:06 -04:00
Merge pull request #21441 from nextcloud/backport/21432/stable19
[stable19] Fix invalid usage of \Exception::getResult
This commit is contained in:
commit
a436df0bc9
1 changed files with 7 additions and 1 deletions
|
|
@ -67,9 +67,15 @@ try {
|
|||
OC_API::setContentType();
|
||||
http_response_code(405);
|
||||
exit();
|
||||
} catch (Exception $ex) {
|
||||
} catch (\OC\OCS\Exception $ex) {
|
||||
OC_API::respond($ex->getResult(), OC_API::requestedFormat());
|
||||
exit();
|
||||
} catch (Throwable $ex) {
|
||||
OC::$server->getLogger()->logException($ex);
|
||||
|
||||
OC_API::setContentType();
|
||||
http_response_code(500);
|
||||
exit();
|
||||
}
|
||||
|
||||
/*
|
||||
|
|
|
|||
Loading…
Reference in a new issue