Merge pull request #58466 from nextcloud/carl/abort-early

This commit is contained in:
Kate 2026-02-23 12:59:16 +01:00 committed by GitHub
commit 432c06cb5b
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -62,6 +62,10 @@ class Propagator implements IPropagator {
}
}
if ($parents === []) {
return;
}
if ($this->inBatch) {
foreach ($parents as $parent) {
$this->addToBatch($parent, $time, $sizeDifference);