Add iOS 17 JIT error notice with other errors

This commit is contained in:
nythepegasus
2023-10-20 21:43:51 -04:00
parent e5061acc20
commit 78f12e45f9
5 changed files with 76 additions and 5 deletions

View File

@@ -105,8 +105,13 @@ final class BackgroundRefreshAppsOperation: ResultOperation<[String: Result<Inst
} catch {
self.finish(.failure(error))
}
start_auto_mounter(documentsDirectory)
if #available(iOS 17, *) {
// TODO: iOS 17 and above have a new JIT implementation that is completely broken in SideStore :(
}
else {
start_auto_mounter(documentsDirectory)
}
self.managedObjectContext.perform {
print("Apps to refresh:", self.installedApps.map(\.bundleIdentifier))