Skip to content

Commit 054e826

Browse files
authored
Fix macOS version check. (#12276)
1 parent b3af47f commit 054e826

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
@@ -969,7 +969,7 @@ export function usesCrashHandler(): boolean {
969969
const releaseParts: string[] = os.release().split(".");
970970
if (releaseParts.length >= 1) {
971971
// Avoid potentially intereferring with the older macOS crash handler.
972-
return parseInt(releaseParts[0]) < 19;
972+
return parseInt(releaseParts[0]) >= 19;
973973
}
974974
return true;
975975
}

0 commit comments

Comments
 (0)