mirror of
https://github.com/nextcloud/server.git
synced 2026-06-10 17:23:59 -04:00
fix duplicate login behavior if user not setup
This commit is contained in:
parent
9f8f052f0d
commit
06a5cf70f7
1 changed files with 3 additions and 1 deletions
|
|
@ -52,7 +52,9 @@ class Hooks {
|
|||
|
||||
\OC_Log::write( 'Encryption library', 'User account "' . $params['uid'] . '" is not ready for encryption; configuration started', \OC_Log::DEBUG );
|
||||
|
||||
return $util->setupServerSide( $params['password'] );
|
||||
if(!$util->setupServerSide( $params['password'] )) {
|
||||
return false;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue