diff options
author | Ferdinand Thiessen <opensource@fthiessen.de> | 2025-03-10 15:31:45 +0100 |
---|---|---|
committer | Ferdinand Thiessen <opensource@fthiessen.de> | 2025-03-11 21:46:55 +0100 |
commit | 7d3047f5cb73806bf48fcf7757a979adb99ae556 (patch) | |
tree | 50be949cac33cc14a26dfaccf8714d21f0c84305 /lib | |
parent | 045f1d210a1d00b5b19ef09f115085b8454e6513 (diff) | |
download | nextcloud-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.php | 2 |
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 |