Update config

This commit is contained in:
Jonathan Hodgson 2017-08-07 09:08:09 +01:00
parent fff1a25a8f
commit f21a2167f1
2 changed files with 9 additions and 2 deletions

View file

@ -189,8 +189,10 @@ function doTo_(to){
if(to[0]!="/" && to.indexOf("//")==-1){
to = "/"+to;
}
to = to
.replace(/\*/g,"$1");
to = to.replace(/\*/g,"$1");
if(to.indexOf(" ") != -1){
to = '"' + to + '"';
}
return to;
}