From 5d0e4c956a9b306aaef5ed929a91f7546630c147 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 ebe53070..a7220445 100644 --- a/AltStore/My Apps/MyAppsViewController.swift +++ b/AltStore/My Apps/MyAppsViewController.swift @@ -173,9 +173,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" }