Do no replace spaces with %20
Some checks failed
Docker Image CI / build (push) Has been cancelled

This commit is contained in:
Glax 2025-05-08 05:28:31 +02:00
parent 30a8162777
commit 7477f4d04d

View File

@ -24,8 +24,6 @@ public class MangaDex : MangaConnector
HashSet<(Manga, List<Author>?, List<MangaTag>?, List<Link>?, List<MangaAltTitle>?)> retManga = new(); HashSet<(Manga, List<Author>?, List<MangaTag>?, List<Link>?, List<MangaAltTitle>?)> retManga = new();
List<JsonNode> results = new(); List<JsonNode> results = new();
publicationTitle = publicationTitle.Replace(" ", "%20");
//Request all search-results //Request all search-results
while (offset < total) //As long as we haven't requested all "Pages" while (offset < total) //As long as we haven't requested all "Pages"
{ {