Show poll question in timeline replies (#1857)

Forgot to add this bit to: https://github.com/vector-im/element-x-android/pull/1848
This commit is contained in:
Marco Romano 2023-11-22 16:14:10 +01:00 committed by GitHub
parent e269303361
commit bc5c02c1cb
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -681,11 +681,14 @@ private fun attachmentThumbnailInfoForInReplyTo(inReplyTo: InReplyTo.Ready): Att
@Composable
private fun textForInReplyTo(inReplyTo: InReplyTo.Ready): String {
val messageContent = inReplyTo.content as? MessageContent ?: return ""
return when (messageContent.type) {
is LocationMessageType -> stringResource(CommonStrings.common_shared_location)
is VoiceMessageType -> stringResource(CommonStrings.common_voice_message)
else -> messageContent.body
return when (val eventContent = inReplyTo.content) {
is MessageContent -> when (eventContent.type) {
is LocationMessageType -> stringResource(CommonStrings.common_shared_location)
is VoiceMessageType -> stringResource(CommonStrings.common_voice_message)
else -> eventContent.body
}
is PollContent -> eventContent.question
else -> ""
}
}