From 7684fb32a2d61404599d73dff04ef3c41fa8da45 Mon Sep 17 00:00:00 2001 From: Thomas G <62822072+Thomasluigi07@users.noreply.github.com> Date: Mon, 6 Mar 2023 19:10:51 +1100 Subject: [PATCH] 1.6 --- Form2.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Form2.cs b/Form2.cs index 89e494d..54dad2d 100644 --- a/Form2.cs +++ b/Form2.cs @@ -46,7 +46,7 @@ namespace ARCHBLOXBootstrapper // check for an internet connection first try { - wc.DownloadData("http://archblox.com/studio/version.txt"); + wc.DownloadData("https://archblox.com/studio/version.txt"); } catch { @@ -54,7 +54,7 @@ namespace ARCHBLOXBootstrapper Environment.Exit(0); } // setup paths - byte[] raw = wc.DownloadData("http://archblox.com/studio/version.txt"); + byte[] raw = wc.DownloadData("https://archblox.com/studio/version.txt"); string webData = Encoding.UTF8.GetString(raw); string version_string = webData; string folderPath = Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.LocalApplicationData), @"Archblx\", @"Studio\", @"Versions\");