fix: Infinite scroll needs loading stats.
This commit is contained in:
parent
bdf2bb8b31
commit
22c966bf16
@ -459,6 +459,7 @@ class HomeActivity :
|
|||||||
appendResults: Boolean,
|
appendResults: Boolean,
|
||||||
itemType: ItemType,
|
itemType: ItemType,
|
||||||
) {
|
) {
|
||||||
|
@Suppress("detekt:ComplexCondition")
|
||||||
if ((appendResults && items.size > 0) || (!appendResults && items.size == 0)) {
|
if ((appendResults && items.size > 0) || (!appendResults && items.size == 0)) {
|
||||||
CountingIdlingResourceSingleton.increment()
|
CountingIdlingResourceSingleton.increment()
|
||||||
binding.swipeRefreshLayout.isRefreshing = true
|
binding.swipeRefreshLayout.isRefreshing = true
|
||||||
@ -539,7 +540,10 @@ class HomeActivity :
|
|||||||
}
|
}
|
||||||
|
|
||||||
private fun reloadBadges() {
|
private fun reloadBadges() {
|
||||||
if (appSettingsService.isDisplayUnreadCountEnabled() || appSettingsService.isDisplayAllCountEnabled()) {
|
if (appSettingsService.isInfiniteLoadingEnabled() ||
|
||||||
|
appSettingsService.isDisplayUnreadCountEnabled() ||
|
||||||
|
appSettingsService.isDisplayAllCountEnabled()
|
||||||
|
) {
|
||||||
CountingIdlingResourceSingleton.increment()
|
CountingIdlingResourceSingleton.increment()
|
||||||
CoroutineScope(Dispatchers.IO).launch {
|
CoroutineScope(Dispatchers.IO).launch {
|
||||||
repository.reloadBadges()
|
repository.reloadBadges()
|
||||||
|
Loading…
x
Reference in New Issue
Block a user