Fixed DELETED user when searching
This commit is contained in:
parent
757a3bee37
commit
fe711d9432
@ -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;
|
||||
|
@ -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;
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user