Fix beta apps on the my apps view, and fix deactivating/activating apps

This commit is contained in:
Jawshoeadan
2022-12-08 19:24:28 -06:00
parent 86d02be70c
commit b02b9197d0
7 changed files with 22 additions and 27 deletions

View File

@@ -461,17 +461,10 @@ private extension MyAppsViewController
func updateDataSource()
{
if let patreonAccount = DatabaseManager.shared.patreonAccount(), patreonAccount.isPatron, PatreonAPI.shared.isAuthenticated
{
self.dataSource.predicate = nil
}
else
{
self.dataSource.predicate = NSPredicate(format: "%K == nil OR %K == NO OR %K == %@",
#keyPath(InstalledApp.storeApp),
#keyPath(InstalledApp.storeApp.isBeta),
#keyPath(InstalledApp.bundleIdentifier), StoreApp.altstoreAppID)
}
}
}