Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

CallTileTimelineItem.CallStatus.MISSED renders both missed and reject… #5089

Merged
merged 2 commits into from
Feb 2, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions changelog.d/5088.bugfix
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Fixes call statuses in the timeline for missed/rejected calls and connected calls.
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,11 @@ class CallItemFactory @Inject constructor(
createCallTileTimelineItem(
roomSummary = roomSummary,
callId = callEventGrouper.callId,
callStatus = if (callEventGrouper.callWasMissed()) CallTileTimelineItem.CallStatus.MISSED else CallTileTimelineItem.CallStatus.ENDED,
callStatus = if (callEventGrouper.callWasAnswered()) {
CallTileTimelineItem.CallStatus.ENDED
} else {
CallTileTimelineItem.CallStatus.MISSED
},
callKind = callKind,
callback = params.callback,
highlight = params.isHighlighted,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -108,11 +108,8 @@ class CallSignalingEventsGroup(private val group: TimelineEventsGroup) {
}
}

/**
* Returns true if there are only events from one side.
*/
fun callWasMissed(): Boolean {
return group.events.distinctBy { it.senderInfo.userId }.size == 1
fun callWasAnswered(): Boolean {
return getAnswer() != null
}

private fun getAnswer(): TimelineEvent? {
Expand Down