diff --git a/features/messages/impl/src/main/kotlin/io/element/android/features/messages/impl/timeline/components/event/TimelineItemEncryptedView.kt b/features/messages/impl/src/main/kotlin/io/element/android/features/messages/impl/timeline/components/event/TimelineItemEncryptedView.kt index 57cf3e0ecc..b0753be9b1 100644 --- a/features/messages/impl/src/main/kotlin/io/element/android/features/messages/impl/timeline/components/event/TimelineItemEncryptedView.kt +++ b/features/messages/impl/src/main/kotlin/io/element/android/features/messages/impl/timeline/components/event/TimelineItemEncryptedView.kt @@ -38,9 +38,9 @@ fun TimelineItemEncryptedView( ) { 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) + CommonStrings.common_unable_to_decrypt_no_access to CompoundDrawables.ic_compound_block } else { - (CommonStrings.common_waiting_for_decryption_key to CompoundDrawables.ic_compound_time) + CommonStrings.common_waiting_for_decryption_key to CompoundDrawables.ic_compound_time } TimelineItemInformativeView( text = stringResource(id = textId),