Browse Source

Throw "401 Unauthenticated" when authentication is provided but invalid

E.g. with an AppToken that has been revoked

Signed-off-by: Joas Schilling <coding@schilljs.com>
tags/v22.0.0beta1
Joas Schilling 3 years ago
parent
commit
521bb30541
No account linked to committer's email address
1 changed files with 2 additions and 0 deletions
  1. 2
    0
      lib/private/User/Session.php

+ 2
- 0
lib/private/User/Session.php View File

@@ -599,6 +599,8 @@ class Session implements IUserSession, Emitter {

return true;
}
// If credentials were provided, they need to be valid, otherwise we do boom
throw new LoginException();
} catch (PasswordLoginForbiddenException $ex) {
// Nothing to do
}

Loading…
Cancel
Save