steamutils 1.1.23 → 1.1.24

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.
Files changed (2) hide show
  1. package/index.js +1 -1
  2. package/package.json +1 -1
package/index.js CHANGED
@@ -1524,7 +1524,7 @@ class SteamUser {
1524
1524
  } else if (response.status === 200) {
1525
1525
  break
1526
1526
  } else if (response.status === 429) {
1527
- console.log('Too Many Requests')
1527
+ console.log('Too Many Requests', config.url)
1528
1528
  tooManyRequestTimestamp = new Date().getTime()
1529
1529
  await sleep(30000)
1530
1530
  } else if (response.status === 401) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "steamutils",
3
- "version": "1.1.23",
3
+ "version": "1.1.24",
4
4
  "main":"index.js",
5
5
  "dependencies": {
6
6
  "axios": "^1.3.4",