diff options
Diffstat (limited to 'gallery_dl/extractor/imgth.py')
| -rw-r--r-- | gallery_dl/extractor/imgth.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gallery_dl/extractor/imgth.py b/gallery_dl/extractor/imgth.py index a97f2e0..8a6fe1c 100644 --- a/gallery_dl/extractor/imgth.py +++ b/gallery_dl/extractor/imgth.py @@ -44,7 +44,7 @@ class ImgthGalleryExtractor(Extractor): while True: thumbs = text.extract(page, '<ul class="thumbnails">', '</ul>')[0] for url in text.extract_iter(thumbs, '<img src="', '"'): - yield "https://imgth.com/images/" + url[24:] + yield "https://imgth.com/images" + url[24:] if '<li class="next">' not in page: return pnum += 1 |
