Fix favicon icons by converting to RGBA PNG and refine README

This commit is contained in:
Sebastian Palencsar
2026-02-23 08:45:57 +01:00
parent ec77654450
commit f5c8f71095

View File

@@ -134,7 +134,9 @@ fn fetch_or_create_icon(
write_rgba_png(img, output_path)?; write_rgba_png(img, output_path)?;
return Ok(()); return Ok(());
} else { } else {
eprintln!("Warning: Downloaded favicon could not be decoded as an image, falling back to dummy icon."); eprintln!(
"Warning: Downloaded favicon could not be decoded as an image, falling back to dummy icon."
);
} }
} }
} }