Fix JS NPE
This commit is contained in:
parent
b7901d2adb
commit
45bb05894b
1 changed files with 1 additions and 1 deletions
|
@ -120,7 +120,7 @@ function(KeyService, UserService, CookieService, ApiService, Features, Config) {
|
|||
};
|
||||
|
||||
planService.getPlans = function(callback, opt_includePersonal) {
|
||||
planService.verifyLoaded(function() {
|
||||
planService.verifyLoaded(function(plans) {
|
||||
var filtered = [];
|
||||
for (var i = 0; i < plans.length; ++i) {
|
||||
var plan = plans[i];
|
||||
|
|
Reference in a new issue