From fadda7fec50f77497793b337ee32a75c4ccc0426 Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Wed, 25 Jun 2025 13:32:33 +0200 Subject: [PATCH] tmp: also stip propagation for e2e metadata on remove Signed-off-by: Robin Appelman --- lib/private/Files/Cache/Updater.php | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/lib/private/Files/Cache/Updater.php b/lib/private/Files/Cache/Updater.php index c73899bd395..e867a4a9191 100644 --- a/lib/private/Files/Cache/Updater.php +++ b/lib/private/Files/Cache/Updater.php @@ -152,6 +152,11 @@ class Updater implements IUpdater { $this->cache->remove($path); + $appDataPath = 'appdata_' . \OC_Util::getInstanceId() . '/end_to_end_encryption/meta-data'; + if (str_starts_with($path, $appDataPath)) { + return; + } + $this->correctParentStorageMtime($path); if ($entry instanceof ICacheEntry) { $this->propagator->propagateChange($path, time(), -$entry->getSize());