Check if requested inventory is ours.

Should fix https://github.com/DoctorMcKay/node-steamcommunity/issues/149
This commit is contained in:
Vankxr
2016-12-30 21:24:53 +00:00
parent 459fe4d8b1
commit 313753bb05

View File

@@ -368,6 +368,11 @@ 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()) {
// We can never get private profile error for our own inventory!
self._notifySessionExpired(err);
}
callback(new Error("This profile is private."));
return;
}