We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 26459de commit d206003Copy full SHA for d206003
extensions/ql-vscode/src/config.ts
@@ -611,8 +611,11 @@ export function isCodespacesTemplate() {
611
612
const DATABASE_DOWNLOAD_SETTING = new Setting("databaseDownload", ROOT_SETTING);
613
614
-export const ALLOW_HTTP_SETTING = new Setting("allowHttp", DATABASE_DOWNLOAD_SETTING);
+export const ALLOW_HTTP_SETTING = new Setting(
615
+ "allowHttp",
616
+ DATABASE_DOWNLOAD_SETTING,
617
+);
618
619
export function allowHttp(): boolean {
- return ALLOW_HTTP.getValue<boolean>() || false;
620
+ return ALLOW_HTTP_SETTING.getValue<boolean>() || false;
621
}
0 commit comments