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'; $scope.state = 'updating';
ApiService.changeUserDetails(data).then(function() { ApiService.changeUserDetails(data).then(function() {
UserService.load(function(updated) { UserService.load(function(updated) {
if (updated.prompts.length) { if (updated && updated.prompts && updated.prompts.length) {
$scope.state = 'editing'; $scope.state = 'editing';
} else { } else {
$location.url('/'); $location.url('/');