Skip to content

Commit f95521b

Browse files
committed
Change to handle early crash file creation.
1 parent a7bf26d commit f95521b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Extension/src/LanguageServer/extension.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -952,7 +952,7 @@ function reportMacCrashes(): void {
952952
// vscode.workspace.createFileSystemWatcher only works in workspace folders.
953953
try {
954954
fs.watch(crashFolder, (event, filename) => {
955-
if (event !== "rename") {
955+
if (event !== "change") {
956956
return;
957957
}
958958
if (!filename || filename === prevMacCrashFile) {

0 commit comments

Comments
 (0)