Skip to content

Commit

Permalink
[kemonoparty] limit default filename length (#2373)
Browse files Browse the repository at this point in the history
  • Loading branch information
mikf committed Mar 8, 2022
1 parent acbb0f5 commit fac8047
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 @@ -23,7 +23,7 @@ class KemonopartyExtractor(Extractor):
category = "kemonoparty"
root = "https://kemono.party"
directory_fmt = ("{category}", "{service}", "{user}")
filename_fmt = "{id}_{title}_{num:>02}_{filename}.{extension}"
filename_fmt = "{id}_{title}_{num:>02}_{filename[:180]}.{extension}"
archive_fmt = "{service}_{user}_{id}_{num}"
cookiedomain = ".kemono.party"

Expand Down

0 comments on commit fac8047

Please sign in to comment.