Skip to content

Commit

Permalink
[patreon] fix extraction (#4547)
Browse files Browse the repository at this point in the history
  • Loading branch information
mikf committed Sep 19, 2023
1 parent 0655ce1 commit 7592c5e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gallery_dl/extractor/patreon.py
Original file line number Diff line number Diff line change
Expand Up @@ -250,7 +250,7 @@ def _build_file_generators(self, filetypes):

def _extract_bootstrap(self, page):
return util.json_loads(text.extr(
page, "window.patreon.bootstrap,", "\n});") + "}")
page, "window.patreon.bootstrap,", "});") + "}")


class PatreonCreatorExtractor(PatreonExtractor):
Expand Down

0 comments on commit 7592c5e

Please sign in to comment.