From 04029745281eb028971c12d839129dd56905fa54 Mon Sep 17 00:00:00 2001 From: Ben Thomas Date: Sun, 19 May 2024 13:08:41 -0500 Subject: [PATCH] fix: Removed dev testing code for updater --- com.furality.sdk/Editor/Updater/Updater.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/com.furality.sdk/Editor/Updater/Updater.cs b/com.furality.sdk/Editor/Updater/Updater.cs index fe5e983..c1d099f 100755 --- a/com.furality.sdk/Editor/Updater/Updater.cs +++ b/com.furality.sdk/Editor/Updater/Updater.cs @@ -85,7 +85,7 @@ private static async Task CheckAndUpdate() !HasLocalDirectoryFuralityPackage()) { var tempFile = await AsyncHelper.MainThread(FileUtil.GetUniqueTempPathInProject) + ".zip"; - var url = "https://github.com/furality/unity-sdk/releases/latest/download/com.furality.sdk.zip"; + var url = remotePackage.downloadUrl; //"https://github.com/furality/unity-sdk/releases/latest/download/com.furality.sdk.zip"; try { using (var response = await HttpClient.GetAsync(url))