aboutsummaryrefslogtreecommitdiff
path: root/editors/code/src/config.ts
diff options
context:
space:
mode:
authorVeetaha <[email protected]>2020-03-08 19:47:35 +0000
committerVeetaha <[email protected]>2020-03-08 19:47:35 +0000
commitde99fa71992b0d86e245b14a946b8c4914c1be6c (patch)
tree2049cbc9f86dad2a97f631c19ecdfe9b0369e37b /editors/code/src/config.ts
parent2847636d3038fd6274d278170d75fe3c0c5ecaf0 (diff)
vscode: fix inversion of askBeforeDownload
Diffstat (limited to 'editors/code/src/config.ts')
-rw-r--r--editors/code/src/config.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/editors/code/src/config.ts b/editors/code/src/config.ts
index cb9af86c0..948c12c2d 100644
--- a/editors/code/src/config.ts
+++ b/editors/code/src/config.ts
@@ -134,7 +134,7 @@ export class Config {
134 file: prebuiltBinaryName, 134 file: prebuiltBinaryName,
135 storage: this.ctx.globalState, 135 storage: this.ctx.globalState,
136 tag: Config.extensionVersion, 136 tag: Config.extensionVersion,
137 askBeforeDownload: !(this.cfg.get("askBeforeDownload") as boolean), 137 askBeforeDownload: this.cfg.get("askBeforeDownload") as boolean,
138 repo: { 138 repo: {
139 name: "rust-analyzer", 139 name: "rust-analyzer",
140 owner: "rust-analyzer", 140 owner: "rust-analyzer",