Compare commits

...

2 Commits

Author SHA1 Message Date
Alexander Corn
f3cf2a4361 3.9.3 2015-09-20 00:33:32 -04:00
Alexander Corn
2890b70add Actually fixed the previous issue 2015-09-20 00:33:24 -04:00
2 changed files with 2 additions and 1 deletions

View File

@@ -43,6 +43,7 @@ SteamCommunity.prototype.getSteamUser = function(id, callback) {
if(!result.profile.steamID64 || !result.profile.onlineState) { if(!result.profile.steamID64 || !result.profile.onlineState) {
callback(new Error("No valid response")); callback(new Error("No valid response"));
return;
} }
callback(null, new CSteamUser(self, result.profile, customurl)); callback(null, new CSteamUser(self, result.profile, customurl));

View File

@@ -1,6 +1,6 @@
{ {
"name": "steamcommunity", "name": "steamcommunity",
"version": "3.9.2", "version": "3.9.3",
"description": "Provides an interface for logging into and interacting with the Steam Community website", "description": "Provides an interface for logging into and interacting with the Steam Community website",
"keywords": ["steam", "steam community"], "keywords": ["steam", "steam community"],
"homepage": "https://github.com/DoctorMcKay/node-steamcommunity", "homepage": "https://github.com/DoctorMcKay/node-steamcommunity",