fix(update-user.js): add another existence check

This commit is contained in:
EvB 2017-01-24 12:16:03 -05:00
parent 0eb7612cbb
commit f049ddefde

View file

@ -50,7 +50,7 @@
$scope.state = 'updating';
ApiService.changeUserDetails(data).then(function() {
UserService.load(function(updated) {
if (updated.prompts.length) {
if (updated && updated.prompts && updated.prompts.length) {
$scope.state = 'editing';
} else {
$location.url('/');
@ -82,4 +82,4 @@
confirmUsername(username);
});
}
})();
})();