1
0
mirror of https://github.com/mikf/gallery-dl.git synced 2024-11-26 04:32:51 +01:00

[subscribestar] fix 'date' metadata

This commit is contained in:
Mike Fährmann 2024-03-22 00:45:09 +01:00
parent ddb2edfd32
commit 1b34d5ac40
No known key found for this signature in database
GPG Key ID: 5680CA389D365A88

View File

@ -175,7 +175,7 @@ class SubscribestarPostExtractor(SubscribestarExtractor):
"author_id" : text.parse_int(extr('data-user-id="', '"')),
"author_nick": text.unescape(extr('alt="', '"')),
"date" : self._parse_datetime(extr(
'class="section-subtitle">', '<')),
'<span class="star_link-types">', '<')),
"content" : (extr(
'<div class="post-content', '<div class="post-uploads')
.partition(">")[2]),