diff --git a/apps/dav/appinfo/info.xml b/apps/dav/appinfo/info.xml index 396f016e8d5..bf0deeccbc6 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 5e61cb9e9fa..583604515af 100644 --- a/lib/private/Repair.php +++ b/lib/private/Repair.php @@ -58,6 +58,7 @@ use OC\Repair\RepairLogoDimension; 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 @@ class Repair implements IOutput { \OCP\Server::get(IDBConnection::class) ), \OCP\Server::get(DeleteSchedulingObjects::class), + \OC::$server->get(RemoveObjectProperties::class), ]; }