diff options
author | Ferdinand Thiessen <opensource@fthiessen.de> | 2025-08-13 18:53:21 +0200 |
---|---|---|
committer | Ferdinand Thiessen <opensource@fthiessen.de> | 2025-08-13 18:53:21 +0200 |
commit | c095dbe31f86d432ead3e6e4b74f5f39aa1bb1b1 (patch) | |
tree | 8d06afcef121eb4639f6f399067556d3d52855eb | |
parent | 2469994885cabecb2c03194701d1c9b2b8e755a6 (diff) | |
download | nextcloud-server-feat/cache-app-config.tar.gz nextcloud-server-feat/cache-app-config.zip |
fixup! feat(AppConfig): cache app config in local cache if availablefeat/cache-app-config
-rw-r--r-- | lib/private/AppConfig.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/private/AppConfig.php b/lib/private/AppConfig.php index 3af7974a074..a245f3149d2 100644 --- a/lib/private/AppConfig.php +++ b/lib/private/AppConfig.php @@ -1204,6 +1204,7 @@ class AppConfig implements IAppConfig { unset($this->lazyCache[$app][$key]); unset($this->fastCache[$app][$key]); unset($this->valueTypes[$app][$key]); + $this->clearLocalCache(); } /** |