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>
This commit is contained in:
parent
a011b7021e
commit
521bb30541
|
@ -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…
Reference in New Issue