@lcap/axios-fixed 1.13.2 → 1.13.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -3319,7 +3319,7 @@ const httpAdapter = isHttpAdapterSupported && function httpAdapter(config) {
3319
3319
  } else {
3320
3320
  options.hostname = parsed.hostname.startsWith("[") ? parsed.hostname.slice(1, -1) : parsed.hostname;
3321
3321
  options.port = parsed.port;
3322
- setProxy(options, config.proxy, protocol + '//' + parsed.hostname + (parsed.port ? ':' + parsed.port : parsed.protocol === 'https:' ? '443' : '') + options.path);
3322
+ setProxy(options, config.proxy, protocol + '//' + parsed.hostname + (parsed.port ? ':' + parsed.port : parsed.protocol === 'https:' ? ':443' : '') + options.path);
3323
3323
  }
3324
3324
 
3325
3325
  let transport;