TF-4368 Fix cannot scroll in email list

This commit is contained in:
dab246
2026-03-11 11:55:05 +07:00
committed by Dat H. Pham
parent eecdf75f5e
commit a28d5b3527
2 changed files with 18 additions and 10 deletions
@@ -364,13 +364,8 @@ class ThreadRepositoryImpl extends ThreadRepository {
return EmailsResponse(emailList: response.first, state: response.last);
});
final currentLimitEmails =
limit?.value ?? ThreadConstants.defaultLimit.value;
log('ThreadRepositoryImpl::refreshChanges: Current limit emails is $currentLimitEmails');
if (!newEmailResponse.hasEmails()
|| (newEmailResponse.emailList?.length ?? 0) < currentLimitEmails) {
|| (newEmailResponse.emailList?.length ?? 0) < ThreadConstants.defaultLimit.value) {
final networkEmailResponse = await _getFirstPage(
session,
accountId,