* fix(core): add hash symbol in uri parse * chore: add changelog Co-authored-by: Evgeniy Abramov <i@kio.ninja>
@@ -0,0 +1,5 @@
+---
+"tauri": patch
+
+Fix loading url containing URI fragment
@@ -405,7 +405,7 @@ impl<P: Params> WindowManager<P> {
CustomProtocol {
protocol: Box::new(move |path| {
let mut path = path
- .split('?')
+ .split(&['?', '#'][..])
// ignore query string
.next()
.unwrap()