mirror of
https://github.com/rust-lang/rust-analyzer
synced 2024-12-26 04:53:34 +00:00
Fix server path comparison
This commit is contained in:
parent
022d031b7f
commit
1749a78ada
1 changed files with 1 additions and 1 deletions
|
@ -167,7 +167,7 @@ async function bootstrapExtension(config: Config, state: PersistentState): Promi
|
||||||
}
|
}
|
||||||
return;
|
return;
|
||||||
};
|
};
|
||||||
if (serverPath(config) !== null) return;
|
if (serverPath(config)) return;
|
||||||
|
|
||||||
const now = Date.now();
|
const now = Date.now();
|
||||||
if (config.package.releaseTag === NIGHTLY_TAG) {
|
if (config.package.releaseTag === NIGHTLY_TAG) {
|
||||||
|
|
Loading…
Reference in a new issue