Browse Source
Do not retain VerifyUserData job when lookup server is not available
Signed-off-by: Julius Härtl <jus@bitgrid.net>
pull/28466/head
Julius Härtl
4 years ago
No known key found for this signature in database
GPG Key ID: 4C614C6ED2CDE6DF
1 changed files with
1 additions and
1 deletions
-
apps/settings/lib/BackgroundJobs/VerifyUserData.php
|
|
|
@ -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']); |
|
|
|
|