fix crash in TimelineFragment (#1159)

This commit is contained in:
Konrad Pozniak 2019-03-28 21:10:38 +01:00 committed by GitHub
parent 397ef051c1
commit 51a3e0ea5e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 6 additions and 0 deletions

View File

@ -853,6 +853,12 @@ public class TimelineFragment extends SFragment implements
if (didLoadEverythingBottom || bottomLoading) {
return;
}
if(statuses.size() == 0) {
sendInitialRequest();
return;
}
bottomLoading = true;
Either<Placeholder, Status> last = statuses.get(statuses.size() - 1);