diff options
-rw-r--r-- | apps/files_sharing/js/share.js | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/apps/files_sharing/js/share.js b/apps/files_sharing/js/share.js index f914f8da175..38738892b8f 100644 --- a/apps/files_sharing/js/share.js +++ b/apps/files_sharing/js/share.js @@ -140,6 +140,7 @@ function createShareDropdown(filenames, files) { if (users) { var list = "<ul>"; $.each(users, function(index, row) { + $('#uid_shared_with option[value="'+row.uid_shared_with+'"]').remove(); if (typeof(index) == 'string') { // TODO typeof not always working, group together users that have parent folders shared with them list += "<li>Parent folder "+index.substr(0, index.lastIndexOf('-'))+" shared with "+row.uid_shared_with+"</li>"; @@ -158,6 +159,7 @@ function createShareDropdown(filenames, files) { }); list += "</ul>"; $(list).appendTo('#shared_list'); + $('#uid_shared_with').trigger('liszt:updated'); } }); $.getJSON(OC.linkTo('files_publiclink', 'ajax/getlink.php'), { path: files }, function(token) { |