Merge pull request #165 from Aareksio/patch-1

Check if instance is logged in before comparing steamids (fixes #164)
This commit is contained in:
Alexander Corn 2017-03-06 11:35:23 -05:00 committed by GitHub
commit acbd71666b

View File

@ -368,7 +368,7 @@ SteamCommunity.prototype.getUserInventoryContents = function(userID, appID, cont
if (err) {
if (err.message == "HTTP error 403" && body === null) {
// 403 with a body of "null" means the inventory/profile is private.
if(userID.getSteamID64() == self.steamID.getSteamID64()) {
if (self.steamID && userID.getSteamID64() == self.steamID.getSteamID64()) {
// We can never get private profile error for our own inventory!
self._notifySessionExpired(err);
}