diff options
author | Joas Schilling <coding@schilljs.com> | 2025-04-08 09:59:20 +0200 |
---|---|---|
committer | backportbot[bot] <backportbot[bot]@users.noreply.github.com> | 2025-04-08 21:02:17 +0000 |
commit | bd62adb9e7b466edeeae68c040d0e7d45baef539 (patch) | |
tree | 895040fc74bdd146e2569d3536c5fa5b7b7eccac | |
parent | 722ede636b4b912c5193588fc9fe1178516602b3 (diff) | |
download | nextcloud-server-backport/52019/stable29.tar.gz nextcloud-server-backport/52019/stable29.zip |
fix(dav): Really only run the chunk cleanup oncebackport/52019/stable29
Signed-off-by: Joas Schilling <coding@schilljs.com>
-rw-r--r-- | apps/dav/lib/Migration/ChunkCleanup.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/apps/dav/lib/Migration/ChunkCleanup.php b/apps/dav/lib/Migration/ChunkCleanup.php index 8a4ad5664a4..bdb3bb7b66d 100644 --- a/apps/dav/lib/Migration/ChunkCleanup.php +++ b/apps/dav/lib/Migration/ChunkCleanup.php @@ -65,6 +65,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(); |