From 664b5b97f03258887f9643a8b488b86068c336e7 Mon Sep 17 00:00:00 2001 From: dec05eba Date: Tue, 25 Jul 2023 23:47:30 +0200 Subject: Mangadex: skip all chapters that need to be read on an external url (mangaplus, comikey, etc) --- plugins/mangadex.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'plugins/mangadex.py') diff --git a/plugins/mangadex.py b/plugins/mangadex.py index 0ade720..9e94881 100755 --- a/plugins/mangadex.py +++ b/plugins/mangadex.py @@ -103,8 +103,8 @@ def list_chapters(url, chapter_list_input): attributes = data["attributes"] external_url = attributes.get("externalUrl", "") - if external_url and external_url.find("mangaplus") != -1: - continue; + if external_url: + continue if attributes["translatedLanguage"] != lang: continue -- cgit v1.2.3