mirror of
https://github.com/clash-verge-rev/clash-verge-rev
synced 2025-05-05 07:03:45 +08:00
fix: appimage path unwrap panic
This commit is contained in:
parent
bf95284b72
commit
015df9e6dd
@ -178,18 +178,15 @@ impl Sysopt {
|
||||
use tauri::Manager;
|
||||
|
||||
let handle = Handle::global();
|
||||
handle
|
||||
.app_handle
|
||||
.lock()
|
||||
.as_ref()
|
||||
.map(|app_handle| {
|
||||
app_handle
|
||||
.env()
|
||||
.appimage
|
||||
match handle.app_handle.lock().as_ref() {
|
||||
Some(app_handle) => {
|
||||
let appimage = app_handle.env().appimage;
|
||||
appimage
|
||||
.and_then(|p| p.to_str().map(|s| s.to_string()))
|
||||
})
|
||||
.unwrap_or(Some(app_path))
|
||||
.unwrap()
|
||||
.unwrap_or(app_path)
|
||||
}
|
||||
None => app_path,
|
||||
}
|
||||
};
|
||||
|
||||
let auto = AutoLaunchBuilder::new()
|
||||
|
Loading…
x
Reference in New Issue
Block a user