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

[stable31] fix(dav): Really only run the chunk cleanup once
pull/52135/head
Joas Schilling 1 year ago committed by GitHub
commit 023542c9a5
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 1
      apps/dav/lib/Migration/ChunkCleanup.php

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

Loading…
Cancel
Save