From 86d7afb95d92e68abc75369243ae70b1d0d6f457 Mon Sep 17 00:00:00 2001 From: Riley Testut Date: Fri, 8 Dec 2023 14:55:51 -0600 Subject: [PATCH] Changes MyAppsViewController.noAppsDataSource to non-prefetching data source --- AltStore/My Apps/MyAppsViewController.swift | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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" }