Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn Molakvoæ <skjnldsv@users.noreply.github.com>2021-11-08 23:40:43 +0300
committerGitHub <noreply@github.com>2021-11-08 23:40:43 +0300
commit677cc1c333a3817af24d40b39db9028d8a7505c7 (patch)
tree2feee23707f3364bf6c4c3b7612828764f1e6928
parenteb585597bcd9d22e1ae1552fe569212c64e46fc3 (diff)
parentf6747516e01f7dc075bb0da967802903e0967f16 (diff)
Merge pull request #29562 from nextcloud/backport/28466/stable22
-rw-r--r--apps/settings/lib/BackgroundJobs/VerifyUserData.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/settings/lib/BackgroundJobs/VerifyUserData.php b/apps/settings/lib/BackgroundJobs/VerifyUserData.php
index a0557452628..ec75f4243be 100644
--- a/apps/settings/lib/BackgroundJobs/VerifyUserData.php
+++ b/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']);