puppyproxy 1.1.3 → 1.1.4

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": "puppyproxy",
3
- "version": "1.1.3",
3
+ "version": "1.1.4",
4
4
  "description": "Node.js library for managing, scraping, and using proxies with fetch and WebSocket support",
5
5
  "type": "module",
6
6
  "types": "./src/index.d.ts",
@@ -298,9 +298,6 @@ export default class RequestClient {
298
298
  const proxy = pr.options.AGENT?.USINGSCRAPED;
299
299
 
300
300
  if (proxy && !uniqueProxies.includes(proxy)) {
301
- pr.id = scrambled.getScrambled();
302
- console.log(pr.id, pr.options.AGENT.___id, "added proxy to pool:", proxy);
303
- pr.options.AGENT.___id = pr.id;
304
301
  proxyRequests.push(pr);
305
302
  uniqueProxies.push(proxy);
306
303
  currentWithoutNew = 0;