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:
parent
0d783203e8
commit
0f5c63f7b9
1 changed files with 3 additions and 3 deletions
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue