We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 67eab0b commit 02bed5eCopy full SHA for 02bed5e
src/providers/FileSystemProvider/FileSystemProvider.ts
@@ -149,7 +149,7 @@ export class FileSystemProvider implements vscode.FileSystemProvider {
149
public async readFile(uri: vscode.Uri): Promise<Uint8Array> {
150
return this._lookupAsFile(uri).then((file: File) => {
151
// Update cache entry
152
- const uniqueId = `${workspaceFolderOfUri(uri)}:${file.name}`;
+ const uniqueId = `${workspaceFolderOfUri(uri)}:${file.fileName}`;
153
workspaceState.update(`${uniqueId}:mtime`, file.mtime);
154
return file.data;
155
});
0 commit comments