mirror of
https://github.com/SideStore/SideStore.git
synced 2026-02-09 06:43:25 +01:00
[AltStore] Improves error message when refreshing fails
This commit is contained in:
@@ -25,7 +25,15 @@ class AppOperationContext
|
||||
var resignedFileURL: URL?
|
||||
var connection: NWConnection?
|
||||
|
||||
var error: Error?
|
||||
var error: Error? {
|
||||
get {
|
||||
return _error ?? self.group.error
|
||||
}
|
||||
set {
|
||||
_error = newValue
|
||||
}
|
||||
}
|
||||
private var _error: Error?
|
||||
|
||||
init(appIdentifier: String, group: OperationGroup)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user