Bypass stream limits

This commit is contained in:
bytedream 2024-05-21 21:33:08 +02:00
parent 301dac478f
commit f7ce888329
3 changed files with 25 additions and 13 deletions

View file

@ -520,7 +520,9 @@ async fn get_format(
.collect();
format_pairs.push((single_format, video.clone(), audio, subtitles.clone()));
single_format_to_format_pairs.push((single_format.clone(), video, subtitles))
single_format_to_format_pairs.push((single_format.clone(), video, subtitles));
stream.invalidate().await?
}
let mut download_formats = vec![];