Merge pull request #52019 from nextcloud/bugfix/noid/only-check-to-cleanup-chunks-once

fix(dav): Really only run the chunk cleanup once
This commit is contained in:
Joas Schilling 2025-04-08 23:02:08 +02:00 committed by GitHub
commit 86981bf05d
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();