diff --git a/gallery_dl/extractor/subscribestar.py b/gallery_dl/extractor/subscribestar.py index 72b6b443..6c439418 100644 --- a/gallery_dl/extractor/subscribestar.py +++ b/gallery_dl/extractor/subscribestar.py @@ -206,10 +206,11 @@ class SubscribestarPostExtractor(SubscribestarExtractor): extr = text.extract_from(html) return { "post_id" : text.parse_int(extr('data-id="', '"')), - "author_name": text.unescape(extr('href="/', '"')), + "date" : self._parse_datetime(extr( + '
', '<')), + "content" : extr('', '').strip(), + "author_name": text.unescape(extr( + 'class="star_link" href="/', '"')), "author_id" : text.parse_int(extr('data-user-id="', '"')), "author_nick": text.unescape(extr('alt="', '"')), - "date" : self._parse_datetime(extr( - '', '<')), - "content" : extr('', '').strip(), }