Fix hash parsing
On my browser, the app doesn't work if you pass a hash parameter, because `hash` is URL-encoded. This change fixes the problem.
This commit is contained in:
parent
c82d6eb932
commit
bd056a5105
@ -255,7 +255,7 @@ var settings = {
|
||||
title : "Gui Hacker",
|
||||
gui : true
|
||||
},
|
||||
hash = document.location.hash.substring(1),
|
||||
hash = decodeURIComponent(document.location.hash.substring(1)),
|
||||
userSettings = {};
|
||||
|
||||
if (hash){
|
||||
|
Loading…
Reference in New Issue
Block a user