fix: lower the prefetch limit to avoid unnecessary refresh (#585)

This commit is contained in:
Naveen Singh 2025-10-28 23:48:29 +05:30 committed by GitHub
parent 07b7e92d82
commit b38f4c2acf
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -2099,6 +2099,6 @@ class ThreadActivity : SimpleActivity() {
private const val TYPE_DELETE = 16
private const val MIN_DATE_TIME_DIFF_SECS = 300
private const val SCROLL_TO_BOTTOM_FAB_LIMIT = 20
private const val PREFETCH_THRESHOLD = 50
private const val PREFETCH_THRESHOLD = 45
}
}