This commit is contained in:
Florian Renaud 2023-08-22 14:44:05 +02:00
parent 44b4372d49
commit 962571bec1

View file

@ -43,7 +43,8 @@ class TimelineItemContentPollFactory @Inject constructor(
.groupBy { content.votes[it]?.size ?: 0 } // Group by votes count
.maxBy { it.key } // Keep max voted answers
.takeIf { it.key > 0 } // Ignore if no option has been voted
?.value.orEmpty()
?.value
.orEmpty()
val answerItems = content.answers.map { answer ->
val votesCount = content.votes[answer.id]?.size ?: 0
val isSelected = answer.id in userVotes