Clearer code.

This commit is contained in:
Benoit Marty 2024-04-25 17:40:18 +02:00 committed by Valere
parent 8a532769e3
commit f65025f841

View file

@ -36,8 +36,8 @@ fun TimelineItemEncryptedView(
onContentLayoutChanged: (ContentAvoidingLayoutData) -> Unit,
modifier: Modifier = Modifier
) {
val (textId, iconId) = if (content.data is UnableToDecryptContent.Data.MegolmV1AesSha2 &&
content.data.utdCause == UtdCause.Membership) {
val isMembershipUtd = (content.data as? UnableToDecryptContent.Data.MegolmV1AesSha2)?.utdCause == UtdCause.Membership
val (textId, iconId) = if (isMembershipUtd) {
(CommonStrings.common_unable_to_decrypt_no_access to CompoundDrawables.ic_compound_block)
} else {
(CommonStrings.common_waiting_for_decryption_key to CompoundDrawables.ic_compound_time)