From 88fef8417c7303c5aa65dcd240856f42aab48762 Mon Sep 17 00:00:00 2001 From: glax Date: Thu, 3 Jul 2025 23:04:32 +0200 Subject: [PATCH] Fix request path --- API/Controllers/MangaController.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/API/Controllers/MangaController.cs b/API/Controllers/MangaController.cs index a413e15..c2da1d3 100644 --- a/API/Controllers/MangaController.cs +++ b/API/Controllers/MangaController.cs @@ -358,7 +358,7 @@ public class MangaController(MangaContext context) : Controller /// was not linked to , so nothing changed /// is not linked to yet. Search for on first (to create a ). /// Error during Database Operation - [HttpPost("{MangaId}/SetAsDownloadFrom/{MangaConnectorName}/{IsIsRequested}")] + [HttpPost("{MangaId}/SetAsDownloadFrom/{MangaConnectorName}/{IsRequested}")] [ProducesResponseType(Status200OK)] [ProducesResponseType(Status404NotFound, "text/plain")] [ProducesResponseType(Status412PreconditionFailed, "text/plain")]