steamutils 1.2.6 → 1.2.8
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/.idea/codeStyles/codeStyleConfig.xml +5 -0
- package/.idea/steamutils.iml +1 -1
- package/.idea/vcs.xml +1 -1
- package/SteamClient.js +4 -1
- package/index.js +1 -1
- package/package.json +1 -1
package/.idea/steamutils.iml
CHANGED
@@ -2,8 +2,8 @@
|
|
2
2
|
<module type="WEB_MODULE" version="4">
|
3
3
|
<component name="NewModuleRootManager">
|
4
4
|
<content url="file://$MODULE_DIR$">
|
5
|
-
<excludeFolder url="file://$MODULE_DIR$/temp" />
|
6
5
|
<excludeFolder url="file://$MODULE_DIR$/.tmp" />
|
6
|
+
<excludeFolder url="file://$MODULE_DIR$/temp" />
|
7
7
|
<excludeFolder url="file://$MODULE_DIR$/tmp" />
|
8
8
|
</content>
|
9
9
|
<orderEntry type="inheritedJdk" />
|
package/.idea/vcs.xml
CHANGED
package/SteamClient.js
CHANGED
@@ -995,7 +995,7 @@ function SteamClient({
|
|
995
995
|
if(!response){
|
996
996
|
return
|
997
997
|
}
|
998
|
-
while (Array.isArray(response
|
998
|
+
while (Array.isArray(response?.headers?.["set-cookie"])) {
|
999
999
|
const cookieObj = cookie.split(';').reduce(function (accumulator, currentValue) {
|
1000
1000
|
accumulator[currentValue.trim().split('=')[0].trim()] = currentValue.trim().split('=')[1].trim()
|
1001
1001
|
return accumulator
|
@@ -1044,6 +1044,9 @@ function SteamClient({
|
|
1044
1044
|
return null
|
1045
1045
|
} else {
|
1046
1046
|
const newCookie = await getNewCookie(cookie)
|
1047
|
+
if(!newCookie){
|
1048
|
+
console.log("Cannot get new cookie")
|
1049
|
+
}
|
1047
1050
|
return newCookie && await loginWithCookie(newCookie, true)
|
1048
1051
|
}
|
1049
1052
|
}
|
package/index.js
CHANGED
@@ -2888,7 +2888,7 @@ class SteamUser {
|
|
2888
2888
|
}
|
2889
2889
|
|
2890
2890
|
async setupProfile () {
|
2891
|
-
const profile = await this._httpRequest(
|
2891
|
+
const profile = await this._httpRequest(`${this._myProfile}/edit?welcomed=1`)
|
2892
2892
|
if (!profile.data) {
|
2893
2893
|
return false
|
2894
2894
|
}
|