mirror of
https://github.com/signalapp/Signal-Android.git
synced 2026-02-24 19:56:00 +00:00
Fix bad behaviour for long group replies.
This commit is contained in:
committed by
Greyson Parrelli
parent
adbdb97a28
commit
6aa4706e9b
@@ -38,7 +38,7 @@ public class PagingMappingAdapter<Key> extends MappingAdapter {
|
||||
pagingController.onDataNeededAroundIndex(position);
|
||||
}
|
||||
|
||||
if (position > 0 && position < super.getCurrentList().size()) {
|
||||
if (position >= 0 && position < super.getCurrentList().size()) {
|
||||
return super.getItem(position);
|
||||
} else {
|
||||
return null;
|
||||
|
||||
Reference in New Issue
Block a user