Check if instance is logged in before comparing steamids (fixes #164)

This commit is contained in:
Arkadiusz Sygulski 2017-03-06 16:02:20 +01:00 committed by GitHub
parent aca375d9da
commit 3c35026a32

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);
}