Skip to content

Commit

Permalink
fixed: Regression causing playlist output format to be applied to eve…
Browse files Browse the repository at this point in the history
…ry video
  • Loading branch information
labmonkey committed Aug 21, 2024
1 parent 8277ff0 commit 9675cbe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/ytdl.py
Original file line number Diff line number Diff line change
Expand Up @@ -299,7 +299,7 @@ async def __add_entry(self, entry, quality, format, folder, custom_name_prefix,
return error_message
output = self.config.OUTPUT_TEMPLATE if len(custom_name_prefix) == 0 else f'{custom_name_prefix}.{self.config.OUTPUT_TEMPLATE}'
output_chapter = self.config.OUTPUT_TEMPLATE_CHAPTER
if 'playlist' in entry:
if 'playlist' in entry and entry['playlist'] is not None:
if len(self.config.OUTPUT_TEMPLATE_PLAYLIST):
output = self.config.OUTPUT_TEMPLATE_PLAYLIST

Expand Down

0 comments on commit 9675cbe

Please sign in to comment.