We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cbe218e commit b72e1b7Copy full SHA for b72e1b7
src/json-schema-content-provider.ts
@@ -47,7 +47,7 @@ export async function getJsonSchemaContent(uri: string, schemaCache: IJSONSchema
47
const cachedETag = schemaCache.getETag(uri);
48
49
const httpSettings = workspace.getConfiguration('http');
50
- configureHttpRequests(httpSettings.http && httpSettings.http.proxy, httpSettings.http && httpSettings.http.proxyStrictSSL);
+ configureHttpRequests(httpSettings.proxy, httpSettings.proxyStrictSSL);
51
52
const headers: { [key: string]: string } = { 'Accept-Encoding': 'gzip, deflate' };
53
if (cachedETag) {
0 commit comments