aboutsummaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorFerdinand Thiessen <opensource@fthiessen.de>2025-03-10 15:31:45 +0100
committerFerdinand Thiessen <opensource@fthiessen.de>2025-03-11 21:46:55 +0100
commit7d3047f5cb73806bf48fcf7757a979adb99ae556 (patch)
tree50be949cac33cc14a26dfaccf8714d21f0c84305 /lib
parent045f1d210a1d00b5b19ef09f115085b8454e6513 (diff)
downloadnextcloud-server-7d3047f5cb73806bf48fcf7757a979adb99ae556.tar.gz
nextcloud-server-7d3047f5cb73806bf48fcf7757a979adb99ae556.zip
fix(lookup-server): do not query data by default
Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de>
Diffstat (limited to 'lib')
-rw-r--r--lib/private/Collaboration/Collaborators/LookupPlugin.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/private/Collaboration/Collaborators/LookupPlugin.php b/lib/private/Collaboration/Collaborators/LookupPlugin.php
index 3cc4e93a486..29ea7b56c6a 100644
--- a/lib/private/Collaboration/Collaborators/LookupPlugin.php
+++ b/lib/private/Collaboration/Collaborators/LookupPlugin.php
@@ -32,7 +32,7 @@ class LookupPlugin implements ISearchPlugin {
public function search($search, $limit, $offset, ISearchResult $searchResult): bool {
$isGlobalScaleEnabled = $this->config->getSystemValueBool('gs.enabled', false);
- $isLookupServerEnabled = $this->config->getAppValue('files_sharing', 'lookupServerEnabled', 'yes') === 'yes';
+ $isLookupServerEnabled = $this->config->getAppValue('files_sharing', 'lookupServerEnabled', 'no') === 'yes';
$hasInternetConnection = $this->config->getSystemValueBool('has_internet_connection', true);
// if case of Global Scale we always search the lookup server