diff options
Diffstat (limited to 'gallery_dl/extractor/webtoons.py')
| -rw-r--r-- | gallery_dl/extractor/webtoons.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/gallery_dl/extractor/webtoons.py b/gallery_dl/extractor/webtoons.py index cebb421..e2474c9 100644 --- a/gallery_dl/extractor/webtoons.py +++ b/gallery_dl/extractor/webtoons.py @@ -11,7 +11,7 @@ from .common import GalleryExtractor, Extractor, Message from .. import exception, text, util -BASE_PATTERN = r"(?:https?://)?(?:www\.)?webtoons\.com/((en|fr)" +BASE_PATTERN = r"(?:https?://)?(?:www\.)?webtoons\.com/(([^/?#]+)" class WebtoonsBase(): @@ -118,6 +118,9 @@ class WebtoonsComicExtractor(WebtoonsBase, Extractor): "list?title_no=210827&page=9"), { "count": ">= 18", }), + # (#1643) + ("https://www.webtoons.com/es/romance/lore-olympus/" + "list?title_no=1725"), ) def __init__(self, match): |
