Catch LoginException
This commit is contained in:
parent
4b4990c48f
commit
8ae49183c1
|
@ -85,6 +85,8 @@ try {
|
||||||
OC_Response::setStatus(405);
|
OC_Response::setStatus(405);
|
||||||
} catch (\OC\OCS\Exception $ex) {
|
} catch (\OC\OCS\Exception $ex) {
|
||||||
OC_API::respond($ex->getResult(), OC_API::requestedFormat());
|
OC_API::respond($ex->getResult(), OC_API::requestedFormat());
|
||||||
|
} catch (\OC\User\LoginException $e) {
|
||||||
|
OC_API::respond(new OC_OCS_Result(null, \OCP\API::RESPOND_UNAUTHORISED, 'Unauthorised'));
|
||||||
} catch (\Exception $e) {
|
} catch (\Exception $e) {
|
||||||
OC_API::setContentType();
|
OC_API::setContentType();
|
||||||
OC_OCS::notFound();
|
OC_OCS::notFound();
|
||||||
|
|
Loading…
Reference in New Issue