Skip to content

Commit

Permalink
fix due to rebase
Browse files Browse the repository at this point in the history
Signed-off-by: tobiasKaminsky <[email protected]>
  • Loading branch information
tobiasKaminsky committed Mar 23, 2018
1 parent 08c241d commit 32e5835
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -354,7 +354,7 @@ public void onBindViewHolder(RecyclerView.ViewHolder holder, int position) {
private void setThumbnail(OCFile file, ImageView thumbnailView) {
if (file.isFolder()) {
thumbnailView.setImageDrawable(MimeTypeUtil.getFolderTypeIcon(file.isSharedWithMe() ||
file.isSharedWithSharee(), file.isSharedViaLink(), file.isEncrypted()));
file.isSharedWithSharee(), file.isSharedViaLink(), file.isEncrypted(), file.getMountType()));
} else {
if ((MimeTypeUtil.isImage(file) || MimeTypeUtil.isVideo(file)) && file.getRemoteId() != null) {
// Thumbnail in cache?
Expand Down

0 comments on commit 32e5835

Please sign in to comment.