From 522782c09d927c44dc5a25eda92a64cc0421fcb7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mike=20F=C3=A4hrmann?= Date: Thu, 18 Nov 2021 23:42:17 +0100 Subject: [PATCH] [subscribestar] emit metadata for posts without media (#1569) --- gallery_dl/extractor/subscribestar.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/gallery_dl/extractor/subscribestar.py b/gallery_dl/extractor/subscribestar.py index 385ed3de26..69e3854cdc 100644 --- a/gallery_dl/extractor/subscribestar.py +++ b/gallery_dl/extractor/subscribestar.py @@ -38,8 +38,6 @@ def items(self): self.login() for post_html in self.posts(): media = self._media_from_post(post_html) - if not media: - continue data = self._data_from_post(post_html) yield Message.Directory, data for num, item in enumerate(media, 1):