fix bug where home timeline was never showing "load more" button (#729)

This commit is contained in:
Konrad Pozniak 2018-07-25 21:50:09 +02:00 committed by GitHub
parent 21ce92f8da
commit dbdc597207
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -723,7 +723,7 @@ public class TimelineFragment extends SFragment implements
switch (kind) { switch (kind) {
default: default:
case HOME: case HOME:
return api.homeTimeline(fromId, uptoId, null); return api.homeTimeline(fromId, uptoId, LOAD_AT_ONCE);
case PUBLIC_FEDERATED: case PUBLIC_FEDERATED:
return api.publicTimeline(null, fromId, uptoId, LOAD_AT_ONCE); return api.publicTimeline(null, fromId, uptoId, LOAD_AT_ONCE);
case PUBLIC_LOCAL: case PUBLIC_LOCAL: