steamcommunity 3.44.1 → 3.44.3
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.
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
<component name="CopyrightManager">
|
|
2
|
-
<settings default="" />
|
|
1
|
+
<component name="CopyrightManager">
|
|
2
|
+
<settings default="" />
|
|
3
3
|
</component>
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
-
<project version="4">
|
|
3
|
-
<component name="JavaScriptLibraryMappings">
|
|
4
|
-
<includedPredefinedLibrary name="Node.js Core" />
|
|
5
|
-
</component>
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<project version="4">
|
|
3
|
+
<component name="JavaScriptLibraryMappings">
|
|
4
|
+
<includedPredefinedLibrary name="Node.js Core" />
|
|
5
|
+
</component>
|
|
6
6
|
</project>
|
package/.idea/misc.xml
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
-
<project version="4">
|
|
3
|
-
<component name="JavaScriptSettings">
|
|
4
|
-
<option name="languageLevel" value="ES6" />
|
|
5
|
-
</component>
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<project version="4">
|
|
3
|
+
<component name="JavaScriptSettings">
|
|
4
|
+
<option name="languageLevel" value="ES6" />
|
|
5
|
+
</component>
|
|
6
6
|
</project>
|
package/components/http.js
CHANGED
|
@@ -124,7 +124,7 @@ SteamCommunity.prototype._checkCommunityError = function(html, callback) {
|
|
|
124
124
|
return err;
|
|
125
125
|
}
|
|
126
126
|
|
|
127
|
-
if (typeof html === 'string' && html.indexOf('g_steamID = false;') > -1 && html.indexOf('<
|
|
127
|
+
if (typeof html === 'string' && html.indexOf('g_steamID = false;') > -1 && html.indexOf('<title>Sign In</title>') > -1) {
|
|
128
128
|
err = new Error("Not Logged In");
|
|
129
129
|
callback(err);
|
|
130
130
|
this._notifySessionExpired(err);
|
package/components/users.js
CHANGED
|
@@ -526,7 +526,7 @@ SteamCommunity.prototype.getUserInventoryContents = function(userID, appID, cont
|
|
|
526
526
|
},
|
|
527
527
|
"qs": {
|
|
528
528
|
"l": language, // Default language
|
|
529
|
-
"count":
|
|
529
|
+
"count": 2000, // Max items per 'page'
|
|
530
530
|
"start_assetid": start
|
|
531
531
|
},
|
|
532
532
|
"json": true
|