mirror of
https://github.com/mjl-/mox.git
synced 2025-07-12 20:14:40 +03:00
on accounts page, fix opening destination with utf8
by decoding location.hash
This commit is contained in:
@ -614,7 +614,7 @@ const init = async () => {
|
||||
if (curhash === window.location.hash) {
|
||||
return
|
||||
}
|
||||
let h = window.location.hash
|
||||
let h = decodeURIComponent(window.location.hash)
|
||||
if (h !== '' && h.substring(0, 1) == '#') {
|
||||
h = h.substring(1)
|
||||
}
|
||||
|
Reference in New Issue
Block a user