Merge pull request #42 from coreos-inc/smallfixes

Fix NPE
This commit is contained in:
Jimmy Zelinskie 2015-05-26 13:45:01 -04:00
commit 67df205e12

View file

@ -45,6 +45,7 @@
$scope.signinStarted = function() {
if (Features.BILLING) {
PlanService.getMinimumPlan(1, true, function(plan) {
if (!plan) { return; }
PlanService.notePlan(plan.stripeId);
});
}