From: Vincent Petry Date: Thu, 9 Dec 2021 13:58:31 +0000 (+0100) Subject: Use correct icon for dir-external-root X-Git-Tag: v23.0.1rc1~35^2 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=refs%2Fpull%2F30187%2Fhead;p=nextcloud-server.git Use correct icon for dir-external-root When an external storage mount is shared with circles, it triggers the share icon state to be rerendered. The picking of the mime type icon would use the regular file icon because there is no actual icon for "dir-external-root" that is shared. This fixes the logic to use the "folder-external" icon in such scenarios. Signed-off-by: Vincent Petry --- diff --git a/core/js/mimetype.js b/core/js/mimetype.js index bad676d9357..7f206548177 100644 --- a/core/js/mimetype.js +++ b/core/js/mimetype.js @@ -50,7 +50,7 @@ OC.MimeType = { return 'folder-shared'; } else if (mimeType === 'dir-public' && $.inArray('folder-public', files) !== -1) { return 'folder-public'; - } else if (mimeType === 'dir-external' && $.inArray('folder-external', files) !== -1) { + } else if ((mimeType === 'dir-external' || mimeType === 'dir-external-root') && $.inArray('folder-external', files) !== -1) { return 'folder-external'; } else if ($.inArray(icon, files) !== -1) { return icon;