-
Notifications
You must be signed in to change notification settings - Fork 430
Open
Labels
bugSomething isn't workingSomething isn't workingplatform: windowsWindows specific issuesWindows specific issuesplugin: opener
Description
Hi!
I noticed that on my computer on which I have OneCommander set as the default file manager (instead of explorer) when I call
#[tauri::command]
pub fn open_path<R: Runtime>(app: tauri::AppHandle<R>, path: PathBuf) {
if let Err(e) = app.opener().open_path(path.to_string_lossy(), None::<&str>)
{
tracing::error!("Failed to open path: {}", e);
}
}
the application completely freezes and there is no way to recover. I think this is an incompatibility of the opener plugin with third party file managers as this doesn't happen on other windows PCs with only the default explorer.
If this could be fixed it would be much appreciated, thanks!
Metadata
Metadata
Assignees
Labels
bugSomething isn't workingSomething isn't workingplatform: windowsWindows specific issuesWindows specific issuesplugin: opener