From 802ab73309894d8ae9568978e713468c255f831a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E3=82=BB=E3=82=AA=E3=82=A6?= Date: Mon, 17 Jun 2024 09:28:37 +0900 Subject: [PATCH] Fix the APAC issue for Japan and APAC overall: - The baseURLAPAC was wrong. Updated it to work the same as the commit made here: https://t.ly/kWQMi which is integrated with LoopKit. --- Sources/Dexcom/Constants.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Sources/Dexcom/Constants.swift b/Sources/Dexcom/Constants.swift index b44342e..b8467ea 100644 --- a/Sources/Dexcom/Constants.swift +++ b/Sources/Dexcom/Constants.swift @@ -10,7 +10,7 @@ import Foundation extension URL { static let baseURL = URL(string: "https://share2.dexcom.com/ShareWebServices/Services")! static let baseURLOUS = URL(string: "https://shareous1.dexcom.com/ShareWebServices/Services")! - static let baseURLAPAC = URL(string: "https://share.dexcom.jp")! + static let baseURLAPAC = URL(string: "https://share.dexcom.jp/ShareWebServices/Services")! } extension String {