fix(dl): Include chapters when muxing

This is a regression from the newer mux-job code that was brought in alongside the multiple `-r/--range` mux jobs feature in v3.1.0.

Fixes #79
This commit is contained in:
rlaphoenix 2024-03-08 15:30:36 +00:00
parent 2bbe033efb
commit c974a41b6d
1 changed files with 1 additions and 1 deletions

View File

@ -631,7 +631,7 @@ class dl:
task_id = progress.add_task(f"{task_description}...", total=None, start=False) task_id = progress.add_task(f"{task_description}...", total=None, start=False)
task_tracks = Tracks(title.tracks) task_tracks = Tracks(title.tracks) + title.tracks.chapters
task_tracks.videos = [video_track] task_tracks.videos = [video_track]
multiplex_tasks.append((task_id, task_tracks)) multiplex_tasks.append((task_id, task_tracks))