Merge pull request #2301 from nextcloud/pass-confirm-cookie-login
fix password check when using remember me login
This commit is contained in:
commit
5fb43b1cc9
1 changed files with 3 additions and 4 deletions
|
@ -127,10 +127,9 @@ class JSConfigHelper {
|
|||
}
|
||||
|
||||
if ($this->currentUser instanceof IUser) {
|
||||
$lastConfirmTimestamp = $this->currentUser->getLastLogin();
|
||||
$sessionTime = $this->session->get('last-password-confirm');
|
||||
if (is_int($sessionTime)) {
|
||||
$lastConfirmTimestamp = $sessionTime;
|
||||
$lastConfirmTimestamp = $this->session->get('last-password-confirm');
|
||||
if (!is_int($lastConfirmTimestamp)) {
|
||||
$lastConfirmTimestamp = 0;
|
||||
}
|
||||
} else {
|
||||
$lastConfirmTimestamp = 0;
|
||||
|
|
Loading…
Reference in a new issue