iamdb / hifi.rs

a high resolution Qobuz streamer built in Rust
GNU General Public License v3.0
62 stars 10 forks source link

fix: favicon serving #250

Closed rarescosma closed 3 months ago

rarescosma commented 3 months ago

file.contents_utf8() fails for binary files so then .unwrap_or_default() returns the empty string, which was causing the favicon to always fail to load.

Fixed to use file.contents().to_vec() instead and factored out the response builder.

iamdb commented 3 months ago

Thank you!