We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 35aa52f commit 8374e99Copy full SHA for 8374e99
2 files changed
.changes/fix-register-deep-link.md
@@ -0,0 +1,6 @@
1
+---
2
+"deep-link": patch
3
+"deep-link-js": patch
4
5
+
6
+Fix runtime deep link registration failing on Linux when the app path has spaces.
plugins/deep-link/src/lib.rs
@@ -293,7 +293,7 @@ mod imp {
293
.unwrap_or_else(|| bin.into_os_string())
294
.to_string_lossy()
295
.to_string();
296
- let qualified_exec = format!("{} %u", exec);
+ let qualified_exec = format!("\"{}\" %u", exec);
297
298
let target = self.app.path().data_dir()?.join("applications");
299
0 commit comments