prevent charAt call on websocket listener

This commit is contained in:
Hiroyasu Nishiyama 2020-06-11 23:00:56 +09:00
parent 81a4f42673
commit 7694349078
1 changed files with 6 additions and 4 deletions

View File

@ -148,10 +148,12 @@
if (root.slice(-1) != "/") {
root = root+"/";
}
if (this.path.charAt(0) == "/") {
root += this.path.slice(1);
} else {
root += this.path;
if (this.path) {
if (this.path.charAt(0) == "/") {
root += this.path.slice(1);
} else {
root += this.path;
}
}
return root;
},