mirror of
https://github.com/kunkunsh/kunkun.git
synced 2025-04-04 14:46:42 +00:00
fix: handle failing icon loading linux gracefully (#193)
This commit is contained in:
parent
441abbcdae
commit
8d49f50495
@ -52,10 +52,13 @@ pub fn load_icns(icns_path: &PathBuf) -> anyhow::Result<RustImageData> {
|
|||||||
#[cfg(target_os = "linux")]
|
#[cfg(target_os = "linux")]
|
||||||
pub fn load_icon(path: PathBuf) -> tauri::http::Response<Vec<u8>> {
|
pub fn load_icon(path: PathBuf) -> tauri::http::Response<Vec<u8>> {
|
||||||
match path.exists() {
|
match path.exists() {
|
||||||
true => {
|
true => match std::fs::read(&path) {
|
||||||
let bytes = std::fs::read(&path).expect("Error reading file");
|
Ok(bytes) => tauri::http::Response::builder().body(bytes).unwrap(),
|
||||||
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 => {
|
false => {
|
||||||
let res = tauri::http::Response::builder()
|
let res = tauri::http::Response::builder()
|
||||||
.status(tauri::http::StatusCode::NOT_FOUND)
|
.status(tauri::http::StatusCode::NOT_FOUND)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user