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:
parent
8b5538ef7e
commit
611967803c
1 changed files with 8 additions and 5 deletions
|
|
@ -681,11 +681,14 @@ private fun attachmentThumbnailInfoForInReplyTo(inReplyTo: InReplyTo.Ready): Att
|
||||||
|
|
||||||
@Composable
|
@Composable
|
||||||
private fun textForInReplyTo(inReplyTo: InReplyTo.Ready): String {
|
private fun textForInReplyTo(inReplyTo: InReplyTo.Ready): String {
|
||||||
val messageContent = inReplyTo.content as? MessageContent ?: return ""
|
return when (val eventContent = inReplyTo.content) {
|
||||||
return when (messageContent.type) {
|
is MessageContent -> when (eventContent.type) {
|
||||||
is LocationMessageType -> stringResource(CommonStrings.common_shared_location)
|
is LocationMessageType -> stringResource(CommonStrings.common_shared_location)
|
||||||
is VoiceMessageType -> stringResource(CommonStrings.common_voice_message)
|
is VoiceMessageType -> stringResource(CommonStrings.common_voice_message)
|
||||||
else -> messageContent.body
|
else -> eventContent.body
|
||||||
|
}
|
||||||
|
is PollContent -> eventContent.question
|
||||||
|
else -> ""
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue