You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
On Windows 10/11, when a protocol/scheme is registered, the application path for the cmd is not wrapped in quotes, which fails if the application path contains spaces.
Should be an easy fix in line 281 of .../plugins/deep-link/src/lib.rs
change: cmd_reg.set_string("", &format!("{} \"%1\"", &exe))?;
to: cmd_reg.set_string("", &format!("\"{}\" \"%1\"", &exe))?;
The text was updated successfully, but these errors were encountered:
On Windows 10/11, when a protocol/scheme is registered, the application path for the cmd is not wrapped in quotes, which fails if the application path contains spaces.
Should be an easy fix in line 281 of .../plugins/deep-link/src/lib.rs
change:
cmd_reg.set_string("", &format!("{} \"%1\"", &exe))?;
to:
cmd_reg.set_string("", &format!("\"{}\" \"%1\"", &exe))?;
The text was updated successfully, but these errors were encountered: