From e7d887439b449bb922d8775e7b8d2c69074fcf18 Mon Sep 17 00:00:00 2001 From: Chris Jacobsen Date: Mon, 12 Aug 2024 19:41:09 -0400 Subject: [PATCH] Fix for not downloading v1 release --- BlazamSetup/Services/DownloadService.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/BlazamSetup/Services/DownloadService.cs b/BlazamSetup/Services/DownloadService.cs index 1cbcdc4..4c3a806 100644 --- a/BlazamSetup/Services/DownloadService.cs +++ b/BlazamSetup/Services/DownloadService.cs @@ -34,7 +34,7 @@ public static async Task Download(string version=null) - var branch = "Release"; + var branch = "release"; //Get the releases from the repo var releases = await githubclient.Repository.Release.GetAll("Blazam-App", "Blazam"); //Filter the releases to the selected branch