mirror of
https://github.com/rust-lang/rust-analyzer
synced 2024-11-10 23:24:29 +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;
|
||||
};
|
||||
if (serverPath(config) !== null) return;
|
||||
if (serverPath(config)) return;
|
||||
|
||||
const now = Date.now();
|
||||
if (config.package.releaseTag === NIGHTLY_TAG) {
|
||||
|
|
Loading…
Reference in a new issue