diff options
-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 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] |