Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoas Schilling <coding@schilljs.com>2021-05-01 00:08:57 +0300
committerJoas Schilling <coding@schilljs.com>2021-05-12 09:02:53 +0300
commita2d5d2d613712bc50c4440d0986b8bc310a6a03f (patch)
tree063e2787b7575b3c49e2f376f9fedc2fc9666cac /index.php
parent0599a8060ceb6518bb3981c88fc14f215d80f562 (diff)
Reply with UNAUTHORIZED like on APIs when login exception was thrown
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'index.php')
-rw-r--r--index.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/index.php b/index.php
index 9ea511c7f00..6bdaf9d477d 100644
--- a/index.php
+++ b/index.php
@@ -55,7 +55,7 @@ try {
OC_Template::printExceptionErrorPage($ex, 500);
}
} catch (\OC\User\LoginException $ex) {
- OC_Template::printErrorPage($ex->getMessage(), $ex->getMessage(), 403);
+ OC_Template::printErrorPage($ex->getMessage(), $ex->getMessage(), 401);
} catch (Exception $ex) {
\OC::$server->getLogger()->logException($ex, ['app' => 'index']);