1
0
Fork 0
mirror of https://github.com/M66B/FairEmail.git synced 2024-12-26 01:36:55 +00:00

Update encryption attachments

This commit is contained in:
M66B 2022-09-20 07:40:51 +02:00
parent 0d783203e8
commit 0f5c63f7b9

View file

@ -3146,7 +3146,6 @@ public class AdapterMessage extends RecyclerView.Adapter<AdapterMessage.ViewHold
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.Q)
bindConversationActions(message, args.getParcelable("actions"));
bindExtras(message);
cowner.start(); // Show attachments
} catch (Throwable ex) {
Log.e(ex);
@ -3169,7 +3168,6 @@ public class AdapterMessage extends RecyclerView.Adapter<AdapterMessage.ViewHold
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.Q)
bindConversationActions(message, args.getParcelable("actions"));
bindExtras(message);
cowner.start(); // Show attachments
} catch (Throwable ex) {
Log.e(ex);
@ -3177,8 +3175,10 @@ public class AdapterMessage extends RecyclerView.Adapter<AdapterMessage.ViewHold
}
});
}
} else
} else {
bindExtras(message);
cowner.start(); // Show attachments
}
if (scroll)
properties.scrollTo(getAdapterPosition(), 0);