From ac3e74f67db88f6784a344f6afae5ba30f9d8ff0 Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Fri, 27 Mar 2026 18:52:30 +0100 Subject: [PATCH] fix: default user_needs_share_refresh to true Signed-off-by: Robin Appelman --- apps/files_sharing/lib/Config/ConfigLexicon.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/files_sharing/lib/Config/ConfigLexicon.php b/apps/files_sharing/lib/Config/ConfigLexicon.php index 623d1340f26..7c689341c90 100644 --- a/apps/files_sharing/lib/Config/ConfigLexicon.php +++ b/apps/files_sharing/lib/Config/ConfigLexicon.php @@ -43,7 +43,7 @@ class ConfigLexicon implements ILexicon { public function getUserConfigs(): array { return [ - new Entry(self::USER_NEEDS_SHARE_REFRESH, ValueType::BOOL, false, 'whether a user needs to have the receiving share data refreshed for possible changes'), + new Entry(self::USER_NEEDS_SHARE_REFRESH, ValueType::BOOL, true, 'whether a user needs to have the receiving share data refreshed for possible changes'), ]; } }