From eb673a7204c9c70eb7d74905c79bfd7b2eaacea8 Mon Sep 17 00:00:00 2001 From: wankio <31354933+wankio@users.noreply.github.com> Date: Tue, 19 Mar 2024 02:48:53 +0700 Subject: [PATCH] Update fapello.py get fullsize image instead resized --- gallery_dl/extractor/fapello.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gallery_dl/extractor/fapello.py b/gallery_dl/extractor/fapello.py index aff8e616..403dc929 100644 --- a/gallery_dl/extractor/fapello.py +++ b/gallery_dl/extractor/fapello.py @@ -42,7 +42,7 @@ class FapelloPostExtractor(Extractor): "type" : "video" if 'type="video' in page else "photo", "thumbnail": text.extr(page, 'poster="', '"'), } - url = text.extr(page, 'src="', '"') + url = text.extr(page, 'src="', '"').replace(".md", "") yield Message.Directory, data yield Message.Url, url, text.nameext_from_url(url, data)