@uxf/scripts 1.6.3 → 1.6.5

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@uxf/scripts",
3
- "version": "1.6.3",
3
+ "version": "1.6.5",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "bin": {
@@ -131,6 +131,7 @@ function createCorrectLinks(incorrectLinks, webUrl) {
131
131
  async function fetchUrl(url, parentUrl = undefined, ttl = 1) {
132
132
  try {
133
133
  Sitemap.axios.defaults.maxRedirects = parentUrl ? 10 : 0;
134
+ Sitemap.axios.defaults.decompress = !parentUrl;
134
135
  const encodedUrl = parentUrl ? encodeURI(decodeURI(url)) : url;
135
136
 
136
137
  const t0 = performance.now();