aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--apps/files_sharing/js/share.js19
1 files changed, 5 insertions, 14 deletions
diff --git a/apps/files_sharing/js/share.js b/apps/files_sharing/js/share.js
index f9500ffd000..1ae55b49937 100644
--- a/apps/files_sharing/js/share.js
+++ b/apps/files_sharing/js/share.js
@@ -12,20 +12,11 @@ $(document).ready(function() {
success: function(users) {
if (users.length > 0) {
icon = OC.imagePath('core', 'actions/shared');
- } else {
- icon = OC.imagePath('core', 'actions/share');
- }
- }
- });
- $.ajax({
- type: 'GET',
- url: OC.linkTo('files_publiclink', 'ajax/getlink.php'),
- dataType: 'json',
- data: 'path='+file,
- async: false,
- success: function(link) {
- if (link.length > 0) {
- icon = OC.imagePath('core', 'actions/public');
+ $.each(users, function(index, row) {
+ if (row.uid_shared_with == 'public') {
+ icon = OC.imagePath('core', 'actions/public');
+ }
+ });
} else {
icon = OC.imagePath('core', 'actions/share');
}