diff options
| author | 2024-10-25 17:27:36 -0400 | |
|---|---|---|
| committer | 2024-10-25 17:27:36 -0400 | |
| commit | a46d8cec37ef1e7370a3127dd5bf3a47e7dc40de (patch) | |
| tree | 27382aedd6d14d1add2b1a37e6df2f3e52f0ac4e /gallery_dl/extractor/postmill.py | |
| parent | e4f39ad7148b104ab522ee13e4af3d3003b65e0f (diff) | |
| parent | fc004701f923bb954a22c7fec2ae8d607e78cb2b (diff) | |
Update upstream source from tag 'upstream/1.27.7'
Update to upstream version '1.27.7'
with Debian dir f4e7d47b82b8fc4fb17fad4aa54873015dcc81c1
Diffstat (limited to 'gallery_dl/extractor/postmill.py')
| -rw-r--r-- | gallery_dl/extractor/postmill.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gallery_dl/extractor/postmill.py b/gallery_dl/extractor/postmill.py index 29b351b..8877175 100644 --- a/gallery_dl/extractor/postmill.py +++ b/gallery_dl/extractor/postmill.py @@ -50,7 +50,7 @@ class PostmillExtractor(BaseExtractor): forum = match.group(1) id = int(match.group(2)) - is_text_post = url.startswith("/") + is_text_post = (url[0] == "/") is_image_post = self._search_image_tag(page) is not None data = { "title": title, |
