Merge pull request #20424 from owncloud/fix-group-count-undo

Fix user count on undo of user deletion
This commit is contained in:
Thomas Müller 2015-11-10 11:58:10 +01:00
commit 9d99049107
1 changed files with 2 additions and 10 deletions

View File

@ -315,11 +315,7 @@ var UserList = {
var gid = groups[i];
var $li = GroupList.getGroupLI(gid);
var userCount = GroupList.getUserCount($li);
if(userCount === 1) {
GroupList.setUserCount($li, '');
} else {
GroupList.setUserCount($li, userCount - 1);
}
GroupList.setUserCount($li, userCount - 1);
}
GroupList.decEveryoneCount();
UserList.hide(uid);
@ -334,11 +330,7 @@ var UserList = {
var gid = groups[i];
var $li = GroupList.getGroupLI(gid);
var userCount = GroupList.getUserCount($li);
if(userCount === 1) {
GroupList.setUserCount($li, '');
} else {
GroupList.setUserCount($li, userCount + 1);
}
GroupList.setUserCount($li, userCount + 1);
}
GroupList.incEveryoneCount();
UserList.getRow(uid).show();