mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-08-17 21:01:34 +08:00
fix(fs): wrong common paths
This commit is contained in:
@ -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);
|
||||
|
||||
|
Reference in New Issue
Block a user