Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
fix(dav): Really only run the chunk cleanup once
Signed-off-by: Joas Schilling <[email protected]>
  • Loading branch information
nickvergessen committed Apr 8, 2025
commit a8be6314ae27f383cce7722aaf17831f3734fe0d
1 change: 1 addition & 0 deletions apps/dav/lib/Migration/ChunkCleanup.php
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ public function run(IOutput $output) {
// 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();
Expand Down
Loading