Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion AltStore/Operations/BackgroundRefreshAppsOperation.swift
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ private let ReceivedApplicationState: @convention(c) (CFNotificationCenter?, Uns
}

@objc(BackgroundRefreshAppsOperation)
final class BackgroundRefreshAppsOperation: ResultOperation<[String: Result<InstalledApp, Error>]>
final class BackgroundRefreshAppsOperation: ResultOperation<[String: Result<InstalledApp, Error>]>, @unchecked Sendable
{
let installedApps: [InstalledApp]
private let managedObjectContext: NSManagedObjectContext
Expand Down
2 changes: 1 addition & 1 deletion AltStore/Operations/InstallAppOperation.swift
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ import Roxas
import minimuxer

@objc(InstallAppOperation)
final class InstallAppOperation: ResultOperation<InstalledApp>
final class InstallAppOperation: ResultOperation<InstalledApp>, @unchecked Sendable
{
let context: InstallAppOperationContext

Expand Down
2 changes: 1 addition & 1 deletion AltStore/Operations/RemoveAppBackupOperation.swift
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import Foundation
import AltStoreCore

@objc(RemoveAppBackupOperation)
final class RemoveAppBackupOperation: ResultOperation<Void>
final class RemoveAppBackupOperation: ResultOperation<Void>, @unchecked Sendable
{
let context: InstallAppOperationContext

Expand Down
1 change: 0 additions & 1 deletion AltStore/Settings/SettingsViewController.swift
Original file line number Diff line number Diff line change
Expand Up @@ -1561,4 +1561,3 @@ private extension SettingsViewController

self.present(alertController, animated: true)
}
}
Loading