We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e9ce3c1 commit 986e366Copy full SHA for 986e366
plugins/misc/src/commands.rs
@@ -68,10 +68,7 @@ pub async fn audio_open<R: tauri::Runtime>(
68
let session_dir = data_dir.join(session_id);
69
70
app.opener()
71
- .reveal_items_in_dir(vec![
72
- session_dir.join("audio.wav"),
73
- session_dir.join("audio.ogg"),
74
- ])
+ .open_path(session_dir.to_string_lossy(), None::<&str>)
75
.map_err(|e| e.to_string())?;
76
77
Ok(())
0 commit comments