We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b45049c commit e2810feCopy full SHA for e2810fe
server/src/server.ts
@@ -85,7 +85,7 @@ let findBinaryDirPathFromProjectRoot = (
85
};
86
87
let getBinaryDirPath = (projectRootPath: p.DocumentUri) =>
88
- extensionConfiguration.binaryPath === null
+ extensionConfiguration.binaryPath == null
89
? findBinaryDirPathFromProjectRoot(projectRootPath)
90
: extensionConfiguration.binaryPath;
91
@@ -980,7 +980,7 @@ function onMessage(msg: p.Message) {
980
if (initialConfiguration != null) {
981
extensionConfiguration = initialConfiguration;
982
if (
983
- extensionConfiguration.binaryPath !== null &&
+ extensionConfiguration.binaryPath != null &&
984
extensionConfiguration.binaryPath[0] === "~"
985
) {
986
// What should happen if the path contains the home directory symbol?
0 commit comments