about summary refs log tree commit diff
path: root/app/javascript/flavours/glitch/features/home_timeline/index.js
diff options
context:
space:
mode:
authorEugen Rochko <eugen@zeonfederated.com>2019-03-01 11:11:35 +0100
committerThibaut Girka <thib@sitedethib.com>2019-03-05 19:30:11 +0100
commitcce1c3252f271bb5daa5ace05c971d6e1b8f298d (patch)
tree2202d65e7414cd8f35382601dbd34363b93629ad /app/javascript/flavours/glitch/features/home_timeline/index.js
parentf513317ba262d9f5d7aa7dd66f8b61690297e107 (diff)
Fix home timeline perpetually reloading when empty
Port 3e0ed36e8ede7f1994ab9c46c4cb86e613569440 to glitch-soc
Diffstat (limited to 'app/javascript/flavours/glitch/features/home_timeline/index.js')
-rw-r--r--app/javascript/flavours/glitch/features/home_timeline/index.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/javascript/flavours/glitch/features/home_timeline/index.js b/app/javascript/flavours/glitch/features/home_timeline/index.js
index 7d124ba01..8eb79fa60 100644
--- a/app/javascript/flavours/glitch/features/home_timeline/index.js
+++ b/app/javascript/flavours/glitch/features/home_timeline/index.js
@@ -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)