mirror of
https://github.com/M66B/FairEmail.git
synced 2025-03-15 08:29:24 +00:00
Skip media for junk messages
This commit is contained in:
parent
deb35ff5f6
commit
924994fe30
1 changed files with 1 additions and 1 deletions
|
@ -3804,7 +3804,7 @@ public class AdapterMessage extends RecyclerView.Adapter<AdapterMessage.ViewHold
|
|||
|
||||
int iavailable = 0;
|
||||
List<EntityAttachment> media = new ArrayList<>();
|
||||
if (thumbnails && bind_extras) {
|
||||
if (thumbnails && !EntityFolder.JUNK.equals(message.folderType) && bind_extras) {
|
||||
for (EntityAttachment attachment : attachments)
|
||||
if ((pdf_preview && attachment.isPDF()) ||
|
||||
(video_preview && attachment.isVideo()) ||
|
||||
|
|
Loading…
Add table
Reference in a new issue