Actually fixed the previous issue

This commit is contained in:
Alexander Corn 2015-09-20 00:33:24 -04:00
parent 1810727a2f
commit 2890b70add

View File

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