fix(dav): Really only run the chunk cleanup once

Signed-off-by: Joas Schilling <coding@schilljs.com>
This commit is contained in:
Joas Schilling 2025-04-08 09:59:20 +02:00
parent ae0bb4eaa2
commit a8be6314ae
No known key found for this signature in database
GPG key ID: F72FA5B49FFA96B0

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