add proper Exception message for invalid token
This commit is contained in:
parent
1cb7239cb7
commit
dda5e6c85b
|
@ -106,8 +106,11 @@ class LostController extends Controller {
|
||||||
try {
|
try {
|
||||||
$user = $this->userManager->get($userId);
|
$user = $this->userManager->get($userId);
|
||||||
|
|
||||||
if (!$this->checkToken($userId, $token) ||
|
if (!$this->checkToken($userId, $token)) {
|
||||||
!$user->setPassword($userId, $password)) {
|
throw new \Exception($this->l10n->t('Couldn\'t reset password because the token is invalid'));
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!$user->setPassword($userId, $password)) {
|
||||||
throw new \Exception();
|
throw new \Exception();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue