Skip to content

Commit

Permalink
[kemonoparty] limit 'title' length (#4741)
Browse files Browse the repository at this point in the history
  • Loading branch information
mikf committed Nov 2, 2023
1 parent 43d0c49 commit caf31e7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gallery_dl/extractor/kemonoparty.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ class KemonopartyExtractor(Extractor):
category = "kemonoparty"
root = "https://kemono.party"
directory_fmt = ("{category}", "{service}", "{user}")
filename_fmt = "{id}_{title}_{num:>02}_{filename[:180]}.{extension}"
filename_fmt = "{id}_{title[:180]}_{num:>02}_{filename[:180]}.{extension}"
archive_fmt = "{service}_{user}_{id}_{num}"
cookies_domain = ".kemono.party"

Expand Down

0 comments on commit caf31e7

Please sign in to comment.