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,
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)