Skip to content

Commit

Permalink
Update lib/Service/Provisioning/Manager.php
Browse files Browse the repository at this point in the history
Co-authored-by: Christoph Wurst <[email protected]>
Signed-off-by: Micke Nordin <[email protected]>
  • Loading branch information
mickenordin and ChristophWurst authored Jul 1, 2024
1 parent 7ef4d8e commit 864b4bb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/Service/Provisioning/Manager.php
Original file line number Diff line number Diff line change
Expand Up @@ -336,7 +336,7 @@ public function updatePassword(IUser $user, ?string $password, array $provisioni
if ($provisioning->getMasterPasswordEnabled() === true && $provisioning->getMasterPassword() !== null) {
$password = $provisioning->getMasterPassword();
$this->logger->debug('Password set to master password for ' . $user->getUID());
} else if ($password === null) {
} elseif ($password === null) {
$this->logger->debug('No password set for ' . $user->getUID());
return;
}
Expand Down

0 comments on commit 864b4bb

Please sign in to comment.