fix(core): update

This commit is contained in:
2022-08-21 13:56:34 +02:00
parent 5bb01a2db9
commit d255c598b4
3 changed files with 9 additions and 5 deletions

View File

@ -3,6 +3,6 @@
*/
export const commitinfo = {
name: '@pushrocks/smarturl',
version: '3.0.4',
version: '3.0.5',
description: 'a url parsing lib'
}

View File

@ -133,6 +133,6 @@ export class Smarturl implements IUrlObject {
}
return `${this.protocol}://${userpart}${this.hostname}:${this.port}/${this.path}`;
return `${this.protocol}//${userpart}${this.hostname}:${this.port}${this.path}`;
}
}