diff --git a/AltStore/My Apps/MyAppsViewController.swift b/AltStore/My Apps/MyAppsViewController.swift index 4011fab4..56a1330c 100644 --- a/AltStore/My Apps/MyAppsViewController.swift +++ b/AltStore/My Apps/MyAppsViewController.swift @@ -1494,7 +1494,8 @@ private extension MyAppsViewController if #available(iOS 15, *) { - for await _ in NotificationCenter.default.notifications(named: AppManager.didFetchSourceNotification) + // .map { $0.name } to avoid "non-sendable type 'Notification?' cannot cross actor boundary" warning. + for await _ in NotificationCenter.default.notifications(named: AppManager.didFetchSourceNotification).map({ $0.name }) { // Wait until _after_ didFetchSourceNotification // to prevent incorrect update() animations.