From 7d9dfaeb9e71027728a37c8594171a54327f86d5 Mon Sep 17 00:00:00 2001 From: FabianLars Date: Tue, 26 Nov 2024 15:40:14 +0100 Subject: [PATCH] lint --- plugins/shell/src/scope.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/shell/src/scope.rs b/plugins/shell/src/scope.rs index 2f820b58d..bcf7679f0 100644 --- a/plugins/shell/src/scope.rs +++ b/plugins/shell/src/scope.rs @@ -221,7 +221,7 @@ impl OpenScope { #[cfg(target_os = "linux")] None => { // ref https://github.com/tauri-apps/tauri/issues/10617 - ::open::with_detached(&path, "/usr/bin/xdg-open") + ::open::with_detached(path, "/usr/bin/xdg-open") .or_else(|_| ::open::that_detached(path)) } #[cfg(not(target_os = "linux"))]