aboutsummaryrefslogtreecommitdiff
path: root/plugins/mangadex.py
diff options
context:
space:
mode:
authordec05eba <dec05eba@protonmail.com>2020-05-31 16:55:44 +0200
committerdec05eba <dec05eba@protonmail.com>2020-07-06 07:12:34 +0200
commit30e41f86e15375f54f34993c170c13ff320d3d15 (patch)
tree77802c76b63390c5bf87ce4a422c0aff621a6223 /plugins/mangadex.py
parenta793898ba743bcb6c60462bd17045764540b8039 (diff)
mangadex: fix list for title without chapter name
Diffstat (limited to 'plugins/mangadex.py')
-rwxr-xr-xplugins/mangadex.py2
1 files changed, 1 insertions, 1 deletions
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]