aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJoas Schilling <coding@schilljs.com>2025-04-08 09:59:20 +0200
committerbackportbot[bot] <backportbot[bot]@users.noreply.github.com>2025-04-08 21:02:30 +0000
commit97ed500b90eae7c97f5404a23e797b394e9f74d4 (patch)
tree23009585a8bba758514a2f3098d0adfeb0e1d87f
parenta5e74aeb093e9edf8616f9cbb5ad8a8034ba5798 (diff)
downloadnextcloud-server-backport/52019/stable30.tar.gz
nextcloud-server-backport/52019/stable30.zip
fix(dav): Really only run the chunk cleanup oncebackport/52019/stable30
Signed-off-by: Joas Schilling <coding@schilljs.com>
-rw-r--r--apps/dav/lib/Migration/ChunkCleanup.php1
1 files changed, 1 insertions, 0 deletions
diff --git a/apps/dav/lib/Migration/ChunkCleanup.php b/apps/dav/lib/Migration/ChunkCleanup.php
index b4d5f48897e..6f294c4748d 100644
--- a/apps/dav/lib/Migration/ChunkCleanup.php
+++ b/apps/dav/lib/Migration/ChunkCleanup.php
@@ -48,6 +48,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();