From f5c8f710953acc6e736fb1b7612f8907b65ec1b7 Mon Sep 17 00:00:00 2001 From: Sebastian Palencsar Date: Mon, 23 Feb 2026 08:45:57 +0100 Subject: [PATCH] Fix favicon icons by converting to RGBA PNG and refine README --- src/main.rs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/main.rs b/src/main.rs index 5c93d61..8d9ee9b 100755 --- a/src/main.rs +++ b/src/main.rs @@ -134,7 +134,9 @@ fn fetch_or_create_icon( write_rgba_png(img, output_path)?; return Ok(()); } 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." + ); } } }