reverse formats order so high quality is selected first

This commit is contained in:
Simon
2025-11-30 07:03:42 +00:00
parent d856ade32b
commit e5a6c8decc

View File

@@ -250,7 +250,7 @@ impl NoodlemagazineProvider {
; ;
formats.push(format); formats.push(format);
} }
return Some(formats); return Some(formats.into_iter().rev().collect());
} }
} }