From 004f96194fecf36e9cc8c3a419207e5b4f090731 Mon Sep 17 00:00:00 2001 From: glax Date: Sun, 20 Oct 2024 02:08:44 +0200 Subject: [PATCH] Fix GetMangaByIds (change request string to "mangaIds") --- Website/modules/Manga.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Website/modules/Manga.tsx b/Website/modules/Manga.tsx index 165cff4..1409261 100644 --- a/Website/modules/Manga.tsx +++ b/Website/modules/Manga.tsx @@ -38,7 +38,7 @@ export class Manga static async GetMangaByIds(internalIds: string[]): Promise { console.debug(`Getting Mangas ${internalIds.join(",")}`); - return await getData(`http://127.0.0.1:6531/v2/Manga?internalIds=${internalIds.join(",")}`) + return await getData(`http://127.0.0.1:6531/v2/Manga?mangaIds=${internalIds.join(",")}`) .then((json) => { console.debug(`Got Manga ${internalIds.join(",")}`); const ret = json as IManga[];