summaryrefslogtreecommitdiffstats
path: root/core/js
diff options
context:
space:
mode:
Diffstat (limited to 'core/js')
-rw-r--r--core/js/sharedialogview.js5
1 files changed, 4 insertions, 1 deletions
diff --git a/core/js/sharedialogview.js b/core/js/sharedialogview.js
index 7b8759527b3..baf70fa63ad 100644
--- a/core/js/sharedialogview.js
+++ b/core/js/sharedialogview.js
@@ -468,7 +468,10 @@
if (item.value.shareType === OC.Share.SHARE_TYPE_USER || item.value.shareType === OC.Share.SHARE_TYPE_CIRCLE) {
avatar.avatar(item.value.shareWith, 32, undefined, undefined, undefined, item.label);
} else {
- avatar.imageplaceholder(text, undefined, 32);
+ if (typeof item.uuid === 'undefined') {
+ item.uuid = text;
+ }
+ avatar.imageplaceholder(item.uuid, text, 32);
}
$("<div class='autocomplete-item-text'></div>")