From f4c96ec0c6ad07f0ef3031742a33958d3944faa5 Mon Sep 17 00:00:00 2001 From: zhom <2717306+zhom@users.noreply.github.com> Date: Fri, 4 Jul 2025 03:17:42 +0400 Subject: [PATCH] fix: accept unused profile path on linux in arguments --- src-tauri/src/browser_runner.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src-tauri/src/browser_runner.rs b/src-tauri/src/browser_runner.rs index 984d46c..8dbc777 100644 --- a/src-tauri/src/browser_runner.rs +++ b/src-tauri/src/browser_runner.rs @@ -992,6 +992,7 @@ mod linux { _url: &str, _browser_type: BrowserType, _browser_dir: &Path, + _profiles_dir: &Path, ) -> Result<(), Box> { Err("Opening URLs in existing Firefox-based browsers is not supported on Linux when using -no-remote".into()) }