fix(fs): wrong common paths

This commit is contained in:
Igor Randjelovic
2022-03-06 00:31:46 +01:00
parent c5856c6dae
commit 51b92f3557

View File

@ -734,13 +734,13 @@ export class FileSystemAccess29 extends FileSystemAccess {
return super.getDocumentsFolderPath(); return super.getDocumentsFolderPath();
} }
getTempFolderPath(): string { getTempFolderPath(): string {
return super.getDocumentsFolderPath(); return super.getTempFolderPath();
} }
getLogicalRootPath(): string { getLogicalRootPath(): string {
return super.getDocumentsFolderPath(); return super.getLogicalRootPath();
} }
getCurrentAppPath(): string { getCurrentAppPath(): string {
return super.getDocumentsFolderPath(); return super.getCurrentAppPath();
} }
public readText = this.readTextSync.bind(this); public readText = this.readTextSync.bind(this);