code review

This commit is contained in:
Valere
2019-06-28 14:45:07 +02:00
parent f83491fdfc
commit 75c1718252
3 changed files with 5 additions and 6 deletions

View File

@ -48,7 +48,8 @@ data class MessageActionState(
fun senderName(): String = informationData.memberName?.toString() ?: ""
fun time(): String? = dateFormat.format(Date(timelineEvent?.root?.originServerTs ?: 0))
fun time(): String? = timelineEvent?.root?.originServerTs?.let { dateFormat.format(Date(it)) }
?: ""
fun canReact(): Boolean = timelineEvent?.root?.type == EventType.MESSAGE && timelineEvent.sendState.isSent()