mirror of
https://github.com/nextcloud/server.git
synced 2026-04-23 07:08:34 -04:00
Do not retain VerifyUserData job when lookup server is not available
Signed-off-by: Julius Härtl <jus@bitgrid.net>
This commit is contained in:
parent
97085c9a3a
commit
f6747516e0
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