diff --git a/AltStore/Operations/Errors/OperationError.swift b/AltStore/Operations/Errors/OperationError.swift index e62ac963..3f7c25e7 100644 --- a/AltStore/Operations/Errors/OperationError.swift +++ b/AltStore/Operations/Errors/OperationError.swift @@ -237,6 +237,7 @@ struct OperationError: ALTLocalizedError { switch self.code { case .noWiFi: return NSLocalizedString("Make sure the VPN is toggled on and you are connected to any WiFi network!", comment: "") + case .serverNotFound: return NSLocalizedString("Make sure you're on the same Wi-Fi network as a computer running AltServer, or try connecting this device to your computer via USB.", comment: "") case .maximumAppIDLimitReached: let baseMessage = NSLocalizedString("Delete sideloaded apps to free up App ID slots.", comment: "") guard let appName, let requiredAppIDs, let availableAppIDs, let expirationDate else { return baseMessage } diff --git a/AltStore/Operations/VerifyAppPledgeOperation.swift b/AltStore/Operations/VerifyAppPledgeOperation.swift index 73a5e960..7ec8f674 100644 --- a/AltStore/Operations/VerifyAppPledgeOperation.swift +++ b/AltStore/Operations/VerifyAppPledgeOperation.swift @@ -30,7 +30,7 @@ class VerifyAppPledgeOperation: ResultOperation { super.main() - // _Don't_ rethrow earlier errors, or else user will only be taken to Patreon post if connected to same WiFi as AltServer. + // _Don't_ rethrow earlier errors, or else user will only be taken to Patreon post if connected to same Wi-Fi as AltServer. // if let error = self.context.error // { // self.finish(.failure(error))