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();
}
getTempFolderPath(): string {
return super.getDocumentsFolderPath();
return super.getTempFolderPath();
}
getLogicalRootPath(): string {
return super.getDocumentsFolderPath();
return super.getLogicalRootPath();
}
getCurrentAppPath(): string {
return super.getDocumentsFolderPath();
return super.getCurrentAppPath();
}
public readText = this.readTextSync.bind(this);