Fix home timeline perpetually reloading when empty

Port 3e0ed36e8e to glitch-soc
This commit is contained in:
Eugen Rochko
2019-03-01 11:11:35 +01:00
committed by Thibaut Girka
parent f513317ba2
commit cce1c3252f
2 changed files with 3 additions and 1 deletions

View File

@ -16,7 +16,7 @@ const messages = defineMessages({
const mapStateToProps = state => ({
hasUnread: state.getIn(['timelines', 'home', 'unread']) > 0,
isPartial: state.getIn(['timelines', 'home', 'items', 0], null) === null,
isPartial: state.getIn(['timelines', 'home', 'isPartial']),
});
@connect(mapStateToProps)