diff options
Diffstat (limited to 'plugins')
-rwxr-xr-x | plugins/mangadex.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/mangadex.py b/plugins/mangadex.py index 05b045b..79b519d 100755 --- a/plugins/mangadex.py +++ b/plugins/mangadex.py @@ -109,7 +109,7 @@ def list_chapters(url, chapter_list_input): chapter_title = chapter.get("title") chapter_url = "https://mangadex.org/chapter/" + chapter_id chapter_name = "Ch. " + chapter_number_str - if chapter_title: + if chapter_title and len(chapter_title) > 0: chapter_name += " - " + chapter_title if chapter_title.lower().replace(" ", "") in seen_titles or chapter_url in seen_urls: |