Turn async off when fetching users to make sure the users get removed from the select form
This commit is contained in:
parent
9eb91a111d
commit
faebee5f25
1 changed files with 2 additions and 2 deletions
|
@ -82,7 +82,7 @@ OC.Share={
|
|||
html += '</div>';
|
||||
$(html).appendTo(appendTo);
|
||||
if (OC.Share.usersAndGroups.length < 1) {
|
||||
$.getJSON(OC.filePath('files_sharing', 'ajax', 'userautocomplete.php'), function(users) {
|
||||
$.ajax({type: 'GET', url: OC.filePath('files_sharing', 'ajax', 'userautocomplete.php'), async: false, success: function(users) {
|
||||
if (users) {
|
||||
OC.Share.usersAndGroups = users;
|
||||
$.each(users, function(index, user) {
|
||||
|
@ -90,7 +90,7 @@ OC.Share={
|
|||
});
|
||||
$('#share_with').trigger('liszt:updated');
|
||||
}
|
||||
});
|
||||
}});
|
||||
} else {
|
||||
$.each(OC.Share.usersAndGroups, function(index, user) {
|
||||
$(user).appendTo('#share_with');
|
||||
|
|
Loading…
Reference in a new issue