Sixth Alpha Release

This commit is contained in:
Vavassor 2017-03-01 16:01:49 -05:00
commit 4fdeba248a
3 changed files with 9 additions and 4 deletions

View file

@ -243,7 +243,12 @@ public class AccountFragment extends Fragment implements AccountActionListener,
setFetchTimelineState(FooterViewHolder.State.END_OF_TIMELINE);
}
} else {
adapter.update(accounts);
if (accounts.size() > 0) {
setFetchTimelineState(FooterViewHolder.State.LOADING);
adapter.update(accounts);
} else {
setFetchTimelineState(FooterViewHolder.State.END_OF_TIMELINE);
}
}
}