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 b3af47f commit 054e826Copy full SHA for 054e826
Extension/src/LanguageServer/extension.ts
@@ -969,7 +969,7 @@ export function usesCrashHandler(): boolean {
969
const releaseParts: string[] = os.release().split(".");
970
if (releaseParts.length >= 1) {
971
// Avoid potentially intereferring with the older macOS crash handler.
972
- return parseInt(releaseParts[0]) < 19;
+ return parseInt(releaseParts[0]) >= 19;
973
}
974
return true;
975
0 commit comments