From 30e41f86e15375f54f34993c170c13ff320d3d15 Mon Sep 17 00:00:00 2001 From: dec05eba Date: Sun, 31 May 2020 16:55:44 +0200 Subject: mangadex: fix list for title without chapter name --- plugins/mangadex.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/mangadex.py b/plugins/mangadex.py index 5890b92..29b0d31 100755 --- a/plugins/mangadex.py +++ b/plugins/mangadex.py @@ -46,7 +46,7 @@ def download_file(url, cookies, save_path): return True def title_url_extract_manga_id(url): - result = re.search("mangadex.org/title/([0-9]+)/", url) + result = re.search("mangadex.org/title/([0-9]+)", url) if result and len(result.groups()) > 0: return result.groups()[0] -- cgit v1.2.3