~cytrogen/masto-fe

a001ae2f3943d8ac111c6437ee6ff890e94544ac — Claire 2 years ago 3de6dcf
Fix explore prompt sometimes showing up when the home TL is loading (#27062)

1 files changed, 4 insertions(+), 2 deletions(-)

M app/javascript/mastodon/features/home_timeline/index.jsx
M app/javascript/mastodon/features/home_timeline/index.jsx => app/javascript/mastodon/features/home_timeline/index.jsx +4 -2
@@ 55,8 55,10 @@ const homeTooSlow = createSelector([
  getHomeFeedSpeed,
], (isLoading, isPartial, speed) =>
  !isLoading && !isPartial // Only if the home feed has finished loading
  && (speed.gap > (30 * 60) // If the average gap between posts is more than 20 minutes
  || (Date.now() - speed.newest) > (1000 * 3600)) // If the most recent post is from over an hour ago
  && (
    (speed.gap > (30 * 60) // If the average gap between posts is more than 30 minutes
    || (Date.now() - speed.newest) > (1000 * 3600)) // If the most recent post is from over an hour ago
  )
);

const mapStateToProps = state => ({