Explorar el Código

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 hace 3 años
padre
commit
521bb30541
No account linked to committer's email address
Se han modificado 1 ficheros con 2 adiciones y 0 borrados
  1. 2
    0
      lib/private/User/Session.php

+ 2
- 0
lib/private/User/Session.php Ver fichero

@@ -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
}

Cargando…
Cancelar
Guardar