Skip to content

Commit

Permalink
Fixed file cache
Browse files Browse the repository at this point in the history
  • Loading branch information
ecmel committed Jan 16, 2021
1 parent 7ceb6e8 commit f75f065
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/completion.ts
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,7 @@ export class SelectorCompletionItemProvider implements CompletionItemProvider, D
try {
text = (await workspace.fs.readFile(file)).toString();
} catch (error) {
text = "";
text = "n/a";
}

this.files.set(path, text);
Expand Down

0 comments on commit f75f065

Please sign in to comment.