Clearer code.

This commit is contained in:
Benoit Marty 2024-04-25 17:40:18 +02:00 committed by Valere
parent 138f4d9525
commit 525c8cbc69

View file

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