diff --git a/apps/dav/appinfo/info.xml b/apps/dav/appinfo/info.xml
index 396f016e8d57c..bf0deeccbc600 100644
--- a/apps/dav/appinfo/info.xml
+++ b/apps/dav/appinfo/info.xml
@@ -46,7 +46,6 @@
OCA\DAV\Migration\RemoveOrphanEventsAndContacts
OCA\DAV\Migration\RemoveClassifiedEventActivity
OCA\DAV\Migration\RemoveDeletedUsersCalendarSubscriptions
- OCA\DAV\Migration\RemoveObjectProperties
OCA\DAV\Migration\ChunkCleanup
diff --git a/lib/private/Repair.php b/lib/private/Repair.php
index 5e61cb9e9fa6d..583604515afe1 100644
--- a/lib/private/Repair.php
+++ b/lib/private/Repair.php
@@ -58,6 +58,7 @@
use OC\Repair\RepairMimeTypes;
use OC\Template\JSCombiner;
use OCA\DAV\Migration\DeleteSchedulingObjects;
+use OCA\DAV\Migration\RemoveObjectProperties;
use OCP\AppFramework\QueryException;
use OCP\AppFramework\Utility\ITimeFactory;
use OCP\Collaboration\Resources\IManager;
@@ -217,6 +218,7 @@ public static function getExpensiveRepairSteps() {
\OCP\Server::get(IDBConnection::class)
),
\OCP\Server::get(DeleteSchedulingObjects::class),
+ \OC::$server->get(RemoveObjectProperties::class),
];
}