Use blue arrow down ico when incoming call was completed elsewhere

This commit is contained in:
Juha Heinanen
2025-06-15 17:24:43 +03:00
parent 4e4eb0e4b1
commit 9aa9e1d05a
5 changed files with 20 additions and 5 deletions

View File

@ -439,7 +439,10 @@ private fun loadCallHistory(aor: String): MutableList<CallRow> {
if (h.aor == aor) {
val direction: Int = if (h.direction == "in") {
if (h.startTime != null) {
R.drawable.call_down_green
if (h.startTime != h.stopTime)
R.drawable.call_down_green
else
R.drawable.call_down_blue
} else {
if (h.rejected)
R.drawable.call_down_red