diff options
author | Christoph Wurst <christoph@winzerhof-wurst.at> | 2023-05-30 17:48:20 +0200 |
---|---|---|
committer | Christoph Wurst <christoph@winzerhof-wurst.at> | 2023-05-30 17:48:20 +0200 |
commit | 3d1acca1f389db89298f5b8445118b75c56c5e7f (patch) | |
tree | 6512a2b0b02d995acdfaeee75f2c3583396d4271 /lib/private/App/AppManager.php | |
parent | 3053df7b7c87c34fcb3ed54835f6cb21461db92c (diff) | |
download | nextcloud-server-3d1acca1f389db89298f5b8445118b75c56c5e7f.tar.gz nextcloud-server-3d1acca1f389db89298f5b8445118b75c56c5e7f.zip |
chore(app): Do not clear unused cache key
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
Diffstat (limited to 'lib/private/App/AppManager.php')
-rw-r--r-- | lib/private/App/AppManager.php | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/lib/private/App/AppManager.php b/lib/private/App/AppManager.php index 9b038b73826..b881d37440e 100644 --- a/lib/private/App/AppManager.php +++ b/lib/private/App/AppManager.php @@ -673,8 +673,6 @@ class AppManager implements IAppManager { * Clear the cached list of apps when enabling/disabling an app */ public function clearAppsCache() { - $settingsMemCache = $this->memCacheFactory->createDistributed('settings'); - $settingsMemCache->clear('listApps'); $this->appInfos = []; } |