1
0
mirror of https://github.com/mikf/gallery-dl.git synced 2025-01-31 19:51:34 +01:00

[patreon] fix extraction (#4547)

This commit is contained in:
Mike Fährmann 2023-09-19 13:18:47 +02:00
parent 0655ce1bae
commit 7592c5e566
No known key found for this signature in database
GPG Key ID: 5680CA389D365A88

View File

@ -250,7 +250,7 @@ class PatreonExtractor(Extractor):
def _extract_bootstrap(self, page):
return util.json_loads(text.extr(
page, "window.patreon.bootstrap,", "\n});") + "}")
page, "window.patreon.bootstrap,", "});") + "}")
class PatreonCreatorExtractor(PatreonExtractor):