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 f7e9fe8 commit 07fd9a9Copy full SHA for 07fd9a9
2 files changed
.changes/uri-parse.md
@@ -0,0 +1,5 @@
1
+---
2
+"tauri": patch
3
4
+
5
+Fix loading url containing URI fragment
core/tauri/src/manager.rs
@@ -405,7 +405,7 @@ impl<P: Params> WindowManager<P> {
405
CustomProtocol {
406
protocol: Box::new(move |path| {
407
let mut path = path
408
- .split('?')
+ .split(&['?', '#'][..])
409
// ignore query string
410
.next()
411
.unwrap()
0 commit comments