lets change the fetched item count to 200

This commit is contained in:
Tibor Kaputa
2022-06-21 23:06:08 +02:00
committed by GitHub
parent d6025e5962
commit d31bdd92a1

View File

@ -13,7 +13,7 @@ import com.simplemobiletools.dialer.models.RecentCall
class RecentsHelper(private val context: Context) {
private val COMPARABLE_PHONE_NUMBER_LENGTH = 9
private val QUERY_LIMIT = "100"
private val QUERY_LIMIT = "200"
@SuppressLint("MissingPermission")
fun getRecentCalls(groupSubsequentCalls: Boolean, callback: (ArrayList<RecentCall>) -> Unit) {