steamcommunity 3.44.1 → 3.44.2
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/components/http.js +1 -1
- package/package.json +1 -1
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);
|