Merge pull request #52375 from nextcloud/fix/noid/metadata-on-fresh-setup

pull/52438/head
Kate 5 months ago committed by GitHub
commit 7880a5c25e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 2
      lib/private/Setup.php

@ -14,6 +14,7 @@ use Exception;
use InvalidArgumentException;
use OC\Authentication\Token\PublicKeyTokenProvider;
use OC\Authentication\Token\TokenCleanupJob;
use OC\Core\BackgroundJobs\GenerateMetadataJob;
use OC\Log\Rotate;
use OC\Preview\BackgroundCleanupJob;
use OC\TextProcessing\RemoveOldTasksBackgroundJob;
@ -495,6 +496,7 @@ class Setup {
$jobList->add(BackgroundCleanupJob::class);
$jobList->add(RemoveOldTasksBackgroundJob::class);
$jobList->add(CleanupDeletedUsers::class);
$jobList->add(GenerateMetadataJob::class);
}
/**

Loading…
Cancel
Save