Merge pull request #52054 from nextcloud/backport/52019/stable31

[stable31] fix(dav): Really only run the chunk cleanup once
This commit is contained in:
Joas Schilling 2025-04-11 12:35:16 +02:00 committed by GitHub
commit 023542c9a5
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -37,6 +37,7 @@ class ChunkCleanup implements IRepairStep {
// If we already ran this onec there is no need to run it again
if ($this->config->getAppValue('dav', 'chunks_migrated', '0') === '1') {
$output->info('Cleanup not required');
return;
}
$output->startProgress();