fix: render genres via SlideRenderer, enable AVIF decoding, add poster fetch logging
Some checks failed
CI / Check / Test (push) Failing after 42s

This commit is contained in:
2026-06-03 00:19:18 +02:00
parent 7155bea78e
commit 86639853d2
5 changed files with 60 additions and 68 deletions

View File

@@ -88,9 +88,11 @@ pub async fn execute(
async fn resolve_poster_images(ctx: &AppContext, report: &WrapUpReport) -> Vec<(String, Vec<u8>)> {
let mut images = Vec::new();
for path in report.poster_paths.iter().take(20) {
if let Ok(bytes) = ctx.services.image_storage.get(path).await {
images.push((path.clone(), bytes));
match ctx.services.image_storage.get(path).await {
Ok(bytes) => images.push((path.clone(), bytes)),
Err(e) => tracing::debug!("poster fetch skipped for {path}: {e}"),
}
}
tracing::info!("resolved {}/{} poster images for video", images.len(), report.poster_paths.len());
images
}