forked from GitHub/dbot
Remove leading slash in url api maker [#435]
This commit is contained in:
parent
5b0f4d3ae8
commit
e8537a93b2
@ -60,12 +60,10 @@ var webInterface = function(dbot) {
|
|||||||
|
|
||||||
this.api = {
|
this.api = {
|
||||||
'getUrl': function(path) {
|
'getUrl': function(path) {
|
||||||
console.log(path);
|
if(path.charAt(0) == '/') path = path.substr(1);
|
||||||
if(this.config.externalPath) {
|
if(this.config.externalPath) {
|
||||||
console.log('external');
|
|
||||||
return this.config.externalPath + '/' + path;
|
return this.config.externalPath + '/' + path;
|
||||||
} else {
|
} else {
|
||||||
console.log('internal');
|
|
||||||
return 'http://' + this.config.webHost + ':' + this.config.webPort + '/' + path;
|
return 'http://' + this.config.webHost + ':' + this.config.webPort + '/' + path;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user