[FIX] request account info in account.js

This commit is contained in:
Geert Weening
2014-11-07 18:04:04 -08:00
parent b63a76d298
commit 486944fa4c

View File

@@ -132,7 +132,7 @@ Account.prototype.isValid = function() {
*/
Account.prototype.getInfo = function(callback) {
return this._remote.request_account_info(this._account_id, callback);
return this._remote.requestAccountInfo({account: this._account_id}, callback);
};
/**