fix: handle failing icon loading linux gracefully (#193)

This commit is contained in:
Luca Giannini 2025-02-22 15:12:47 +01:00 committed by GitHub
parent 441abbcdae
commit 8d49f50495
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -52,10 +52,13 @@ pub fn load_icns(icns_path: &PathBuf) -> anyhow::Result<RustImageData> {
#[cfg(target_os = "linux")]
pub fn load_icon(path: PathBuf) -> tauri::http::Response<Vec<u8>> {
match path.exists() {
true => {
let bytes = std::fs::read(&path).expect("Error reading file");
tauri::http::Response::builder().body(bytes).unwrap()
}
true => match std::fs::read(&path) {
Ok(bytes) => tauri::http::Response::builder().body(bytes).unwrap(),
Err(err) => tauri::http::Response::builder()
.status(tauri::http::StatusCode::NOT_FOUND)
.body(format!("error loading icon: {:?}", err).as_bytes().to_vec())
.unwrap(),
},
false => {
let res = tauri::http::Response::builder()
.status(tauri::http::StatusCode::NOT_FOUND)