From c93608042dd1f5f74c7b8ca2e5cc4400a6f3380b Mon Sep 17 00:00:00 2001 From: jahorton Date: Fri, 12 Feb 2021 10:21:36 +0700 Subject: [PATCH] fix(ios): beta help -> staging --- .../Keyman/Keyman/InfoViewController/InfoViewController.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ios/keyman/Keyman/Keyman/InfoViewController/InfoViewController.swift b/ios/keyman/Keyman/Keyman/InfoViewController/InfoViewController.swift index 474a823410..31f63e104b 100644 --- a/ios/keyman/Keyman/Keyman/InfoViewController/InfoViewController.swift +++ b/ios/keyman/Keyman/Keyman/InfoViewController/InfoViewController.swift @@ -65,7 +65,7 @@ class InfoViewController: UIViewController, UIWebViewDelegate { private func loadFromServer() { let appVersion = Version.current.majorMinor - let url = "https://help.keyman.com/products/iphone-and-ipad/\(appVersion.plainString)/" + let url = "\(KeymanHosts.HELP_KEYMAN_COM)/products/iphone-and-ipad/\(appVersion.plainString)/" webView.loadRequest(URLRequest(url: URL(string: url)!)) log.debug("Info page URL: \(url)") }