mikf / gallery-dl

Command-line program to download image galleries and collections from several image hosting sites
GNU General Public License v2.0
10.68k stars 881 forks source link

[Subscribestar] [bug] Broken date parsing on updated posts #5782

Closed Arased closed 17 hours ago

Arased commented 4 days ago

The date in subscribestar posts that have been updated at least once is prefixed with "Updated on " wich breaks the parsing. Using the incorrectly parsed date in a format will result in an error.

if dt.startswith("Updated on "):
            dt = dt[11:]

adding this to SubscribestarExctrator._parse_datetime() fixes the issue.