From 7477f4d04d4afd556236d65ee1c74ab838d80a78 Mon Sep 17 00:00:00 2001 From: Glax Date: Thu, 8 May 2025 05:28:31 +0200 Subject: [PATCH] Do no replace spaces with %20 --- API/Schema/MangaConnectors/MangaDex.cs | 2 -- 1 file changed, 2 deletions(-) diff --git a/API/Schema/MangaConnectors/MangaDex.cs b/API/Schema/MangaConnectors/MangaDex.cs index 938da81..a7e8bd6 100644 --- a/API/Schema/MangaConnectors/MangaDex.cs +++ b/API/Schema/MangaConnectors/MangaDex.cs @@ -23,8 +23,6 @@ public class MangaDex : MangaConnector int total = int.MaxValue; //How many total results are there, is updated on first request HashSet<(Manga, List?, List?, List?, List?)> retManga = new(); List results = new(); - - publicationTitle = publicationTitle.Replace(" ", "%20"); //Request all search-results while (offset < total) //As long as we haven't requested all "Pages"