Mute when thumbnailing

This commit is contained in:
Jeremy Soller 2026-01-16 13:41:07 -07:00
parent 2ee05bf8a6
commit ceb8f57ec7
No known key found for this signature in database
GPG key ID: 670FDFB5428E05CA
3 changed files with 11 additions and 4 deletions

View file

@ -369,7 +369,7 @@ impl App {
self.flags.config_state.recent_files.truncate(10);
self.save_config_state();
let video = match video::new_video(&url) {
let video = match video::new_video(&url, video::VideoSettings::default()) {
Ok(ok) => ok,
Err(err) => return err,
};