diff --git a/index.js b/index.js index 2409519..cb811c5 100644 --- a/index.js +++ b/index.js @@ -275,7 +275,10 @@ SteamCommunity.prototype.getClientLogonToken = function(callback) { return; } - callback(null, body); + callback(null, { + "accountName": body.account_name, + "webLogonToken": body.token + }); }); };