Skip to content

Commit d03af1b

Browse files
fix: more permissive accept (#3373)
Closes #3242
1 parent 555a5f8 commit d03af1b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/utils/src/internals/sitemap.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -261,7 +261,7 @@ export async function* parseSitemap<T extends ParseSitemapOptions>(
261261
method: 'GET',
262262
timeout: networkTimeouts,
263263
headers: {
264-
accept: 'text/plain, application/xhtml+xml, application/xml;q=0.9, */*;q=0.8',
264+
accept: '*/*',
265265
},
266266
});
267267
request.on('response', () => resolve(request));

0 commit comments

Comments
 (0)