Skip to content

Commit

Permalink
[node-fetch] remove accept-encoding header
Browse files Browse the repository at this point in the history
  • Loading branch information
jordinl committed Oct 23, 2024
1 parent 27b6cac commit db4c2ed
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion node/fetch/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ const CONCURRENCY = parseInt(process.env.CONCURRENCY || 10);
const REQUEST_TIMEOUT = parseInt(process.env.REQUEST_TIMEOUT || 5);
const headers = {
"User-Agent": process.env.USER_AGENT || "node-fetch",
"Accept-Encoding": "gzip, deflate, br"
};

const makeRequest = async url => {
Expand Down

0 comments on commit db4c2ed

Please sign in to comment.