diff options
author | dec05eba <dec05eba@protonmail.com> | 2023-07-25 23:43:29 +0200 |
---|---|---|
committer | dec05eba <dec05eba@protonmail.com> | 2023-07-25 23:43:29 +0200 |
commit | 1b3312aae47952caa50f8c5f9ca56b16109d1bd7 (patch) | |
tree | 7039a90c7c0bef33e30c1017566ab50745f1b7f5 | |
parent | 1215c2fbdb638f4cf32dc33920cbf4cd5340285c (diff) |
Mangadex: skip all chapters that need to be read on an external url (mangaplus, comikey, etc)
-rw-r--r-- | src/plugins/Mangadex.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/Mangadex.cpp b/src/plugins/Mangadex.cpp index 06ea027..4b5745f 100644 --- a/src/plugins/Mangadex.cpp +++ b/src/plugins/Mangadex.cpp @@ -203,7 +203,7 @@ namespace QuickMedia { continue; const Json::Value &external_url_json = attributes_json["externalUrl"]; - if(external_url_json.isString() && strstr(external_url_json.asCString(), "mangaplus")) + if(external_url_json.isString()) continue; const Json::Value &translated_language_json = attributes_json["translatedLanguage"]; |