steamutils 1.1.83 → 1.1.84
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/index.js +2 -2
- package/package.json +1 -1
package/index.js
CHANGED
|
@@ -1564,13 +1564,13 @@ class SteamUser {
|
|
|
1564
1564
|
checkTooManyRequest = true
|
|
1565
1565
|
await sleep(30000)
|
|
1566
1566
|
} else if (response.status === 401) {
|
|
1567
|
-
console.log('Unauthorized')
|
|
1567
|
+
console.log('Unauthorized', config.url)
|
|
1568
1568
|
if (params.method.toUpperCase() === 'POST') {
|
|
1569
1569
|
config.headers['Content-Type'] = config.headers['content-type'] = 'multipart/form-data'
|
|
1570
1570
|
retry = 1
|
|
1571
1571
|
}
|
|
1572
1572
|
} else {
|
|
1573
|
-
console.log(response.status);
|
|
1573
|
+
console.log(response.status, config.url);
|
|
1574
1574
|
}
|
|
1575
1575
|
}
|
|
1576
1576
|
return response
|