From 2679f31c4efdf7c2c7d3466eb0a458947ff1e2ec Mon Sep 17 00:00:00 2001 From: cheykrym Date: Thu, 18 Dec 2025 07:59:58 +0300 Subject: [PATCH] update --- yobble/Services/AppUpdateChecker.swift | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/yobble/Services/AppUpdateChecker.swift b/yobble/Services/AppUpdateChecker.swift index 93df906..e4c7087 100644 --- a/yobble/Services/AppUpdateChecker.swift +++ b/yobble/Services/AppUpdateChecker.swift @@ -78,7 +78,7 @@ final class AppUpdateChecker: ObservableObject { private func fetchRemoteConfig() async { guard let buildType = AppConfig.APP_BUILD.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed), - let url = URL(string: "https://static.yobble.org/config/ios/dev2-\(buildType).json") + let url = URL(string: "https://static.yobble.org/config/ios/\(buildType).json") else { log("Unable to build remote config URL") return @@ -117,8 +117,8 @@ final class AppUpdateChecker: ObservableObject { return } - print("buildNumber", buildNumber) - print("config", config.notSupportedBuild, config.minSupportedBuild, config.recommendedBuild) +// print("buildNumber", buildNumber) +// print("config", config.notSupportedBuild, config.minSupportedBuild, config.recommendedBuild) let requiresNeedUpdate = buildNumber <= config.notSupportedBuild if requiresNeedUpdate {