tmp: also stip propagation for e2e metadata on remove

Signed-off-by: Robin Appelman <robin@icewind.nl>
This commit is contained in:
Robin Appelman 2025-06-25 13:32:33 +02:00 committed by Julius Knorr
parent 15b1127632
commit fadda7fec5

View file

@ -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());