fix(deep-link): runtime register on Linux when app path has spaces (#3258)

This commit is contained in:
Lucas Fernandes Nogueira
2026-02-05 12:30:29 -03:00
committed by GitHub
parent 35aa52f45e
commit 8374e997b8
2 changed files with 7 additions and 1 deletions
+6
View File
@@ -0,0 +1,6 @@
---
"deep-link": patch
"deep-link-js": patch
---
Fix runtime deep link registration failing on Linux when the app path has spaces.
+1 -1
View File
@@ -293,7 +293,7 @@ mod imp {
.unwrap_or_else(|| bin.into_os_string())
.to_string_lossy()
.to_string();
let qualified_exec = format!("{} %u", exec);
let qualified_exec = format!("\"{}\" %u", exec);
let target = self.app.path().data_dir()?.join("applications");