From 61d80df509403be953f7fb96d9b887f627ac034c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mike=20F=C3=A4hrmann?= Date: Sun, 26 Jan 2025 21:28:24 +0100 Subject: [PATCH] [mangaread] fix manga metadata extraction --- gallery_dl/extractor/mangaread.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/gallery_dl/extractor/mangaread.py b/gallery_dl/extractor/mangaread.py index 4b017dca..6970b4f8 100644 --- a/gallery_dl/extractor/mangaread.py +++ b/gallery_dl/extractor/mangaread.py @@ -92,9 +92,9 @@ class MangareadMangaExtractor(MangareadBase, MangaExtractor): "genres" : list(text.extract_iter( extr('class="genres-content">', ""), '"tag">', "")), "type" : text.remove_html( - extr("Type \n", "")), + extr(" Type ", "\n")), "release" : text.parse_int(text.remove_html( - extr("Release \n", ""))), + extr(" Release ", "\n"))), "status" : text.remove_html( - extr("Status \n", "")), + extr(" Status ", "\n")), }