diff options
author | Morris Jobke <hey@morrisjobke.de> | 2017-02-14 09:22:02 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-02-14 09:22:02 -0600 |
commit | c5dffc465cbaef7c58d0ef4d9c322c0a597e8aed (patch) | |
tree | c05963e8c0adb01d5bdb41f6a763908fa904a575 /apps/files_sharing | |
parent | 257e28f46dd732ea2a9b379c4b1655bb19cd0c7e (diff) | |
parent | 200a28255e058843465c63080d917170de293ee6 (diff) | |
download | nextcloud-server-c5dffc465cbaef7c58d0ef4d9c322c0a597e8aed.tar.gz nextcloud-server-c5dffc465cbaef7c58d0ef4d9c322c0a597e8aed.zip |
Merge pull request #3472 from nextcloud/enable-avatars-always
Always enable avatars
Diffstat (limited to 'apps/files_sharing')
-rw-r--r-- | apps/files_sharing/js/files_drop.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/files_sharing/js/files_drop.js b/apps/files_sharing/js/files_drop.js index f9f6959c952..64051844d03 100644 --- a/apps/files_sharing/js/files_drop.js +++ b/apps/files_sharing/js/files_drop.js @@ -117,7 +117,7 @@ }; $(document).ready(function() { - if($('#upload-only-interface').val() === "1" && oc_config.enable_avatars) { + if($('#upload-only-interface').val() === "1") { $('.avatardiv').avatar($('#sharingUserId').val(), 128, true); } |