From da0775863db13527e141463e39521f72d85ebec1 Mon Sep 17 00:00:00 2001 From: "Simon L." Date: Thu, 12 Feb 2026 10:22:02 +0100 Subject: [PATCH] fix bug with FTS not being able to enable it anymore Signed-off-by: Simon L. --- php/src/Data/ConfigurationManager.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/php/src/Data/ConfigurationManager.php b/php/src/Data/ConfigurationManager.php index 7534acda..26172525 100644 --- a/php/src/Data/ConfigurationManager.php +++ b/php/src/Data/ConfigurationManager.php @@ -114,7 +114,7 @@ class ConfigurationManager // Type-cast because old configs could have 1/0 for this key. get => (bool) $this->get('isFulltextsearchEnabled', false); // Elasticsearch does not work on kernels without seccomp anymore. See https://github.com/nextcloud/all-in-one/discussions/5768 - set { $this->set('isFulltextsearchEnabled', ($this->collaboraSeccompDisabled && $value)); } + set { $this->set('isFulltextsearchEnabled', (!$this->collaboraSeccompDisabled && $value)); } } public string $domain {