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
parent0599a8060ceb6518bb3981c88fc14f215d80f562 (diff)
Reply with UNAUTHORIZED like on APIs when login exception was thrown
Signed-off-by: Joas Schilling <coding@schilljs.com>
-rw-r--r--build/integration/features/provisioning-v1.feature2
-rw-r--r--index.php2
2 files changed, 2 insertions, 2 deletions
diff --git a/build/integration/features/provisioning-v1.feature b/build/integration/features/provisioning-v1.feature
index 03aaad4b857..05eb550d98c 100644
--- a/build/integration/features/provisioning-v1.feature
+++ b/build/integration/features/provisioning-v1.feature
@@ -687,4 +687,4 @@ Feature: provisioning
And assure user "user0" is disabled
And As an "user0"
When sending "GET" with exact url to "/index.php/apps/files"
- And the HTTP status code should be "403"
+ And the HTTP status code should be "401"
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']);