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[];