diff options
| author | bors[bot] <26634292+bors[bot]@users.noreply.github.com> | 2021-01-14 13:40:06 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-01-14 13:40:06 +0000 |
| commit | aeacaeed4e49dd71ba0de30a21d9f3d1cc153cec (patch) | |
| tree | 5509e76ff7460258ec58f14e845f0bd0b3f987c8 | |
| parent | 022d031b7fe9266ad3dd320c729989e8bf495b67 (diff) | |
| parent | 1749a78adabbf9cc268651329dabd26f19c06b4a (diff) | |
| download | rust-aeacaeed4e49dd71ba0de30a21d9f3d1cc153cec.tar.gz rust-aeacaeed4e49dd71ba0de30a21d9f3d1cc153cec.zip | |
Merge #7269
7269: Fix server path comparison r=lnicola a=lnicola Co-authored-by: Laurențiu Nicola <lnicola@dend.ro>
| -rw-r--r-- | editors/code/src/main.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editors/code/src/main.ts b/editors/code/src/main.ts index 694da9409d0..e598c2c8497 100644 --- a/editors/code/src/main.ts +++ b/editors/code/src/main.ts @@ -167,7 +167,7 @@ async function bootstrapExtension(config: Config, state: PersistentState): Promi } return; }; - if (serverPath(config) !== null) return; + if (serverPath(config)) return; const now = Date.now(); if (config.package.releaseTag === NIGHTLY_TAG) { |
