Iterate on reactions (#668)

This commit is contained in:
Benoit Marty
2023-06-26 18:31:50 +02:00
committed by Benoit Marty
parent c7ec8bc9e9
commit 2cef47c271
8 changed files with 51 additions and 33 deletions

View File

@@ -78,7 +78,8 @@ private fun List<Reaction>?.map(): List<EventReaction> {
return this?.map {
EventReaction(
key = it.key,
count = it.count.toLong()
count = it.count.toLong(),
senderIds = it.senders.map { sender -> UserId(sender) }
)
} ?: emptyList()
}