diff --git a/AltStore/My Apps/MyAppsViewController.swift b/AltStore/My Apps/MyAppsViewController.swift index 4d11ffcb..3b9442fc 100644 --- a/AltStore/My Apps/MyAppsViewController.swift +++ b/AltStore/My Apps/MyAppsViewController.swift @@ -181,9 +181,9 @@ private extension MyAppsViewController return dataSource } - func makeNoUpdatesDataSource() -> RSTDynamicCollectionViewPrefetchingDataSource + func makeNoUpdatesDataSource() -> RSTDynamicCollectionViewDataSource { - let dynamicDataSource = RSTDynamicCollectionViewPrefetchingDataSource() + let dynamicDataSource = RSTDynamicCollectionViewDataSource() dynamicDataSource.numberOfSectionsHandler = { 1 } dynamicDataSource.numberOfItemsHandler = { _ in self.updatesDataSource.itemCount == 0 ? 1 : 0 } dynamicDataSource.cellIdentifierHandler = { _ in "NoUpdatesCell" }