From 701c85c0a1e113995303e9ba9b1deebd9382571b Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Tue, 8 Oct 2024 16:34:19 +0200 Subject: [PATCH] fix: update parent etag when changing acl rules Signed-off-by: Robin Appelman --- lib/DAV/ACLPlugin.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lib/DAV/ACLPlugin.php b/lib/DAV/ACLPlugin.php index e29aa4bc4..1db014438 100644 --- a/lib/DAV/ACLPlugin.php +++ b/lib/DAV/ACLPlugin.php @@ -248,6 +248,9 @@ function (array $rules, array $rulesForPath) { $this->ruleManager->saveRule($rule); } + + $node->getNode()->getStorage()->getPropagator()->propagateChange($fileInfo->getInternalPath(), $fileInfo->getMtime()); + return true; }); }