[AltWidget] Fixes AppDetailWidget not displaying app information

This commit is contained in:
Riley Testut
2023-09-11 11:51:10 -05:00
committed by Magesh K
parent 297a71bf91
commit 58b6c0d6ac

View File

@@ -208,7 +208,7 @@ extension AppsTimelineProvider: IntentTimelineProvider
func getSnapshot(for intent: Intent, in context: Context, completion: @escaping (AppsEntry) -> Void) func getSnapshot(for intent: Intent, in context: Context, completion: @escaping (AppsEntry) -> Void)
{ {
Task<Void, Never> { Task<Void, Never> {
let bundleIDs = [intent.identifier ?? StoreApp.altstoreAppID] let bundleIDs = [intent.app?.identifier ?? StoreApp.altstoreAppID]
let snapshot = await self.snapshot(for: bundleIDs) let snapshot = await self.snapshot(for: bundleIDs)
completion(snapshot) completion(snapshot)
@@ -218,7 +218,7 @@ extension AppsTimelineProvider: IntentTimelineProvider
func getTimeline(for intent: Intent, in context: Context, completion: @escaping (Timeline<AppsEntry>) -> Void) func getTimeline(for intent: Intent, in context: Context, completion: @escaping (Timeline<AppsEntry>) -> Void)
{ {
Task<Void, Never> { Task<Void, Never> {
let bundleIDs = [intent.identifier ?? StoreApp.altstoreAppID] let bundleIDs = [intent.app?.identifier ?? StoreApp.altstoreAppID]
let timeline = await self.timeline(for: bundleIDs) let timeline = await self.timeline(for: bundleIDs)
completion(timeline) completion(timeline)