Skip to content

Commit

Permalink
[mangaread] fix manga metadata extraction
Browse files Browse the repository at this point in the history
  • Loading branch information
mikf committed Jan 26, 2025
1 parent 4bd9b26 commit 61d80df
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions gallery_dl/extractor/mangaread.py
Original file line number Diff line number Diff line change
Expand Up @@ -92,9 +92,9 @@ def metadata(self, page):
"genres" : list(text.extract_iter(
extr('class="genres-content">', "</div>"), '"tag">', "</a>")),
"type" : text.remove_html(
extr("Type </h5>\n</div>", "</div>")),
extr(" Type ", "\n</div>")),
"release" : text.parse_int(text.remove_html(
extr("Release </h5>\n</div>", "</div>"))),
extr(" Release ", "\n</div>"))),
"status" : text.remove_html(
extr("Status </h5>\n</div>", "</div>")),
extr(" Status ", "\n</div>")),
}

0 comments on commit 61d80df

Please sign in to comment.