kopia lustrzana https://github.com/ryukoposting/Signal-Android
Fix issue where last item in contact selection collection would not display.
rodzic
7cdaf988f2
commit
de29fc047e
|
@ -39,6 +39,10 @@ open class ContactSearchCollection<ContactRecord>(
|
|||
}
|
||||
|
||||
fun getSublist(start: Int, end: Int): List<ContactSearchData> {
|
||||
if (start == end) {
|
||||
return emptyList()
|
||||
}
|
||||
|
||||
val results = mutableListOf<ContactSearchData>()
|
||||
|
||||
val startOffset = if (start == 0 && section.includeHeader) {
|
||||
|
|
Ładowanie…
Reference in New Issue