Changed output format of getClientLogonToken

This commit is contained in:
Alex Corn 2019-02-13 17:42:28 -05:00
parent 4710afa28b
commit cfd932dc72

View File

@ -275,7 +275,10 @@ SteamCommunity.prototype.getClientLogonToken = function(callback) {
return;
}
callback(null, body);
callback(null, {
"accountName": body.account_name,
"webLogonToken": body.token
});
});
};