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

fix(dav): Really only run the chunk cleanup once
pull/52062/head
Joas Schilling 2025-04-08 23:02:08 +07:00 committed by GitHub
commit 86981bf05d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 0 deletions

@ -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();