diff --git a/src/core/vfs.ts b/src/core/vfs.ts index 1ef45a9..082d8a5 100644 --- a/src/core/vfs.ts +++ b/src/core/vfs.ts @@ -356,7 +356,7 @@ namespace OS { return; } this.genealogy = re.split("/").filter(s=> s!=""); - this.path = this.genealogy.join("/"); + this.path = `${this.protocol}://${this.genealogy.join("/")}`; if (!this.isRoot()) { this.basename = this.genealogy[ this.genealogy.length - 1 diff --git a/src/packages/CodePad/libs/corelib.d.ts.zip b/src/packages/CodePad/libs/corelib.d.ts.zip index 2a405df..1954598 100644 Binary files a/src/packages/CodePad/libs/corelib.d.ts.zip and b/src/packages/CodePad/libs/corelib.d.ts.zip differ