mirror of
https://github.com/nextcloud/server.git
synced 2026-06-12 02:00:51 -04:00
Fix potential empty result
Signed-off-by: Joas Schilling <coding@schilljs.com>
This commit is contained in:
parent
85781d8d36
commit
fcdbd4eca3
1 changed files with 2 additions and 2 deletions
|
|
@ -51,9 +51,9 @@ class StorePasswordListener implements IEventListener {
|
|||
}
|
||||
|
||||
$stored = $this->credentialsManager->retrieve($event->getUser()->getUID(), LoginCredentials::CREDENTIALS_IDENTIFIER);
|
||||
$update = $stored['password'] !== $event->getPassword();
|
||||
$update = isset($stored['password']) && $stored['password'] !== $event->getPassword();
|
||||
if (!$update && $event instanceof UserLoggedInEvent) {
|
||||
$update = $stored['user'] !== $event->getLoginName();
|
||||
$update = isset($stored['user']) && $stored['user'] !== $event->getLoginName();
|
||||
}
|
||||
|
||||
if ($stored && $update) {
|
||||
|
|
|
|||
Loading…
Reference in a new issue