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:42 +0000 |
commit | 219995da90309e5b49d1da498aa31c85de5ad75b (patch) | |
tree | 23771deb271be86dbadcf7ec300b18db55938cbf | |
parent | b5974d885ea186eeb23c625eb0e8ff271df257ad (diff) | |
download | nextcloud-server-backport/52019/stable31.tar.gz nextcloud-server-backport/52019/stable31.zip |
fix(dav): Really only run the chunk cleanup oncebackport/52019/stable31
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 681b38404b9..edd9a26109e 100644 --- a/apps/dav/lib/Migration/ChunkCleanup.php +++ b/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(); |