fix missing namespace
This commit is contained in:
parent
f3cdcf313c
commit
6a1ef7b8d6
|
|
@ -1006,8 +1006,8 @@ const UI = {
|
||||||
url += ':' + port;
|
url += ':' + port;
|
||||||
}
|
}
|
||||||
let token;
|
let token;
|
||||||
token = getQueryVar("token","nope");
|
token = WebUtil.getQueryVar("token", "nope");
|
||||||
if (token=="nope") {
|
if (token == "nope") {
|
||||||
url += '/' + path;
|
url += '/' + path;
|
||||||
} else {
|
} else {
|
||||||
url += '/' + path + '?token=' + token;
|
url += '/' + path + '?token=' + token;
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue