Fixed DELETED user when searching

This commit is contained in:
Igor Zhukov 2014-11-12 20:07:24 +03:00
parent 757a3bee37
commit fe711d9432
2 changed files with 4 additions and 3 deletions

View File

@ -1862,7 +1862,7 @@ angular.module('myApp.controllers', ['myApp.i18n'])
userFullResult.user.first_name = $scope.override.first_name;
userFullResult.user.last_name = $scope.override.last_name;
}
AppUsersManager.saveApiUser(userFullResult.user);
AppUsersManager.saveApiUser(userFullResult.user, true);
AppPhotosManager.savePhoto(userFullResult.profile_photo);
if (userFullResult.profile_photo._ != 'photoEmpty') {
$scope.userPhoto.id = userFullResult.profile_photo.id;

View File

@ -77,8 +77,9 @@ angular.module('myApp.services', ['myApp.i18n', 'izhukov.utils'])
angular.forEach(apiUsers, saveApiUser);
};
function saveApiUser (apiUser) {
if (!angular.isObject(apiUser)) {
function saveApiUser (apiUser, noReplace) {
if (!angular.isObject(apiUser) ||
noReplace && angular.isObject(users[apiUser.id]) && users[apiUser.id].first_name) {
return;
}