From 19082481c306c401c5fabb5faca6ba50c9a3ff16 Mon Sep 17 00:00:00 2001 From: RobertBeekman Date: Tue, 16 Jan 2024 11:39:45 +0100 Subject: [PATCH] Workshop - Fix profile installation 404ing --- .../Implementations/ProfileEntryInstallationHandler.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Artemis.WebClient.Workshop/Handlers/InstallationHandlers/Implementations/ProfileEntryInstallationHandler.cs b/src/Artemis.WebClient.Workshop/Handlers/InstallationHandlers/Implementations/ProfileEntryInstallationHandler.cs index 6051ca0f5..9abd616cf 100644 --- a/src/Artemis.WebClient.Workshop/Handlers/InstallationHandlers/Implementations/ProfileEntryInstallationHandler.cs +++ b/src/Artemis.WebClient.Workshop/Handlers/InstallationHandlers/Implementations/ProfileEntryInstallationHandler.cs @@ -27,7 +27,7 @@ public class ProfileEntryInstallationHandler : IEntryInstallationHandler try { HttpClient client = _httpClientFactory.CreateClient(WorkshopConstants.WORKSHOP_CLIENT_NAME); - await client.DownloadDataAsync($"releases/download/{release}", stream, progress, cancellationToken); + await client.DownloadDataAsync($"releases/download/{release.Id}", stream, progress, cancellationToken); } catch (Exception e) {