[FIX] Replaced Account.is_valid() with Account.isValid()

This commit is contained in:
Evan Schwartz
2014-04-30 17:47:12 -07:00
parent 8275e036c9
commit f56a20d697

View File

@@ -1311,7 +1311,7 @@ Remote.prototype.getAccount = function(accountID) {
Remote.prototype.addAccount = function(accountID) {
var account = new Account(this, accountID);
if (account.is_valid()) {
if (account.isValid()) {
this._accounts[accountID] = account;
}