steamutils 1.1.83 → 1.1.84
Sign up to get free protection for your applications and to get access to all the features.
- 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
|