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

main
Konrad Pozniak 6 years ago committed by GitHub
parent 3f2b49d596
commit 30d9204586
  1. 2
      app/src/main/java/com/keylesspalace/tusky/fragment/TimelineFragment.java

@ -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:

Loading…
Cancel
Save