collapse history of multiple calls to/from same peer

This commit is contained in:
Juha Heinanen
2018-05-29 16:26:04 +03:00
parent 0c922eb543
commit e4fcb302ee
9 changed files with 86 additions and 50 deletions
@@ -1,3 +1,10 @@
package com.tutpro.baresip
class HistoryRow(val peerURI: String, val direction: Int, val time: String)
class HistoryRow(val peerURI: String, val direction: Int, val time: String) {
val directions = ArrayList<Int>()
init {
directions.add(direction)
}
}