mirror of
https://github.com/nextcloud/server.git
synced 2026-06-12 18:21:40 -04:00
tmp: also stip propagation for e2e metadata on remove
Signed-off-by: Robin Appelman <robin@icewind.nl>
This commit is contained in:
parent
15b1127632
commit
fadda7fec5
1 changed files with 5 additions and 0 deletions
|
|
@ -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());
|
||||
|
|
|
|||
Loading…
Reference in a new issue