0
0
Fork 0

Fix home timeline perpetually reloading when empty (#10130)

Regression from #6876
This commit is contained in:
Eugen Rochko 2019-03-01 11:11:35 +01:00 committed by GitHub
parent 5ecbf4d4c0
commit 3e0ed36e8e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 1 deletions

View file

@ -29,6 +29,8 @@ const initialTimeline = ImmutableMap({
const expandNormalizedTimeline = (state, timeline, statuses, next, isPartial, isLoadingRecent) => {
return state.update(timeline, initialTimeline, map => map.withMutations(mMap => {
mMap.set('isLoading', false);
mMap.set('isPartial', isPartial);
if (!next && !isLoadingRecent) mMap.set('hasMore', false);
if (!statuses.isEmpty()) {