mirror of
https://github.com/crunchy-labs/crunchy-cli.git
synced 2026-01-21 12:12:00 -06:00
Embed chapters only to archive merge auto if --sync-start flag is set
This commit is contained in:
parent
a73773ce1d
commit
ea39dcbc71
1 changed files with 5 additions and 1 deletions
|
|
@ -585,7 +585,11 @@ async fn get_format(
|
||||||
audios: vec![(audio, single_format.audio.clone())],
|
audios: vec![(audio, single_format.audio.clone())],
|
||||||
subtitles,
|
subtitles,
|
||||||
metadata: DownloadFormatMetadata {
|
metadata: DownloadFormatMetadata {
|
||||||
skip_events: single_format.skip_events().await?,
|
skip_events: if archive.include_chapters {
|
||||||
|
single_format.skip_events().await?
|
||||||
|
} else {
|
||||||
|
None
|
||||||
|
},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
));
|
));
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue