mirror of
https://github.com/nextcloud/server.git
synced 2026-06-11 09:42:09 -04:00
Merge pull request #28466 from nextcloud/bugfix/noid/verify-user-no-retain
Do not retain VerifyUserData job when lookup server is not available
This commit is contained in:
commit
36b72b8fd0
1 changed files with 1 additions and 1 deletions
|
|
@ -172,7 +172,7 @@ class VerifyUserData extends Job {
|
|||
if (empty($this->lookupServerUrl) ||
|
||||
$this->config->getAppValue('files_sharing', 'lookupServerUploadEnabled', 'yes') !== 'yes' ||
|
||||
$this->config->getSystemValue('has_internet_connection', true) === false) {
|
||||
return false;
|
||||
return true;
|
||||
}
|
||||
|
||||
$user = $this->userManager->get($argument['uid']);
|
||||
|
|
|
|||
Loading…
Reference in a new issue