mirror of https://github.com/node-red/node-red.git
prevent charAt call on websocket listener
parent
81a4f42673
commit
7694349078
|
@ -148,10 +148,12 @@
|
||||||
if (root.slice(-1) != "/") {
|
if (root.slice(-1) != "/") {
|
||||||
root = root+"/";
|
root = root+"/";
|
||||||
}
|
}
|
||||||
if (this.path.charAt(0) == "/") {
|
if (this.path) {
|
||||||
root += this.path.slice(1);
|
if (this.path.charAt(0) == "/") {
|
||||||
} else {
|
root += this.path.slice(1);
|
||||||
root += this.path;
|
} else {
|
||||||
|
root += this.path;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
return root;
|
return root;
|
||||||
},
|
},
|
||||||
|
|
Loading…
Reference in New Issue