fix: this fixes the bug where the app would only load 10-20 remote followers

This commit is contained in:
LucasGGamerM
2023-04-16 18:07:49 -03:00
parent ee8ca09e0e
commit 1098c855c4

View File

@@ -79,7 +79,7 @@ public abstract class PaginatedAccountListFragment extends BaseAccountListFragme
remoteAccount.acct = remoteAccount.username;
}
});
onDataLoaded(result.stream().map(AccountItem::new).collect(Collectors.toList()), false);
onDataLoaded(result.stream().map(AccountItem::new).collect(Collectors.toList()), nextMaxID!=null);
}
@Override