1
0
mirror of https://github.com/Artemis-RGB/Artemis synced 2025-12-12 13:28:33 +00:00

Workshop - Update image delete URL

This commit is contained in:
RobertBeekman 2024-01-29 22:55:38 +01:00
parent cea8c1b796
commit c29d30d222

View File

@ -84,7 +84,7 @@ public class WorkshopService : IWorkshopService
public async Task DeleteEntryImage(Guid id, CancellationToken cancellationToken)
{
HttpClient client = _httpClientFactory.CreateClient(WorkshopConstants.WORKSHOP_CLIENT_NAME);
HttpResponseMessage response = await client.DeleteAsync($"images/{id}", cancellationToken);
HttpResponseMessage response = await client.DeleteAsync($"images/manage/{id}", cancellationToken);
response.EnsureSuccessStatusCode();
}