We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0201110 commit 387f4f2Copy full SHA for 387f4f2
crates/tauri/src/protocol/tauri.rs
@@ -89,6 +89,9 @@ fn get_response<R: Runtime>(
89
90
let path = path
91
.strip_prefix(window_origin)
92
+ // wry always sends us <scheme>://localhost format for custom protocols
93
+ // even when it is actually http://<scheme>.localhost
94
+ .or_else(|| path.strip_prefix("tauri://localhost"))
95
.map(|p| p.to_string())
96
.unwrap_or_default();
97
0 commit comments