Merge pull request #55881 from nextcloud/backport/55863/stable32

[stable32] fix(lexicon): execute repair step
This commit is contained in:
Andy Scherzinger 2025-10-21 14:30:46 +02:00 committed by GitHub
commit f9cbb1175c
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -19,6 +19,7 @@ use OC\Repair\CleanUpAbandonedApps;
use OC\Repair\ClearFrontendCaches;
use OC\Repair\ClearGeneratedAvatarCache;
use OC\Repair\Collation;
use OC\Repair\ConfigKeyMigration;
use OC\Repair\Events\RepairAdvanceEvent;
use OC\Repair\Events\RepairErrorEvent;
use OC\Repair\Events\RepairFinishEvent;
@ -199,6 +200,7 @@ class Repair implements IOutput {
\OCP\Server::get(RemoveLegacyDatadirFile::class),
\OCP\Server::get(AddCleanupDeletedUsersBackgroundJob::class),
\OCP\Server::get(SanitizeAccountProperties::class),
\OCP\Server::get(ConfigKeyMigration::class),
];
}