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 ff757df commit 9bfa95eCopy full SHA for 9bfa95e
server/src/server.ts
@@ -954,8 +954,12 @@ function onMessage(msg: m.Message) {
954
// if we want to support having several projects open at the same time
955
// without their settings overriding eachother. Not a problem now though
956
// as we'll likely only have "global" settings starting out.
957
- let [configuration] = msg.result as [extensionConfiguration];
958
- extensionConfiguration = configuration;
+ let [configuration] = msg.result as [
+ extensionConfiguration | null | undefined
959
+ ];
960
+ if (configuration != null) {
961
+ extensionConfiguration = configuration;
962
+ }
963
}
964
} else if (
965
msg.result != null &&
0 commit comments