[AltStore] Improves error message when refreshing fails

This commit is contained in:
Riley Testut
2019-07-01 11:55:46 -07:00
parent f94e0add6e
commit 26757c99a6

View File

@@ -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)
{