We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 98e68a0 commit 75cab2dCopy full SHA for 75cab2d
FluentLauncher.UniversalInstaller/Pages/ProgressPage.xaml.cs
@@ -409,7 +409,7 @@ async Task<FileInfo> DownloadConnectXExtension()
409
string releasesContent = await _httpClient.GetStringAsync(githubApi);
410
string architecture = SystemHelper.GetArchitecture();
411
412
- string downloadUrl = JsonSerializer.Deserialize<ReleaseModel>(releasesContent).Assets
+ string downloadUrl = "https://source.cubestructor.cc/" + JsonSerializer.Deserialize<ReleaseModel>(releasesContent).Assets
413
.First(a => a.Name.EndsWith($"{architecture}.zip"))
414
.DownloadUrl;
415
0 commit comments