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 23f5e4c commit 82f177eCopy full SHA for 82f177e
1 file changed
src-tauri/src/main.rs
@@ -189,6 +189,7 @@ fn open_url_in_browser(url: String) -> Result<(), String> {
189
// Use xdg-open for Linux
190
Command::new("xdg-open")
191
.arg(&url)
192
+ .current_dir("/tmp")
193
.spawn()
194
.map_err(|err| format!("Failed to open URL on Linux: {}", err))?;
195
}
0 commit comments