From afb393b80b74058c7c61a6911205939368abab7d Mon Sep 17 00:00:00 2001 From: Riley Testut Date: Tue, 23 Jan 2024 14:21:37 -0600 Subject: [PATCH] =?UTF-8?q?Changes=20=E2=80=9CWiFi=E2=80=9D=20spelling=20t?= =?UTF-8?q?o=20=E2=80=9CWi-Fi=E2=80=9D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- AltStore/Operations/Errors/OperationError.swift | 1 + AltStore/Operations/VerifyAppPledgeOperation.swift | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) 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))