diff --git a/gallery_dl/extractor/mangadex.py b/gallery_dl/extractor/mangadex.py index a8241dca..53ae76a0 100644 --- a/gallery_dl/extractor/mangadex.py +++ b/gallery_dl/extractor/mangadex.py @@ -61,7 +61,8 @@ class MangadexExtractor(Extractor): chnum, sep, minor = 0, "", "" data = { - "manga" : mattributes["title"]["en"], + "manga" : (mattributes["title"].get("en") or + next(iter(mattributes["title"].values()))), "manga_id": manga["data"]["id"], "title" : cattributes["title"], "volume" : text.parse_int(cattributes["volume"]),