[Glitch] Fix explore prompt sometimes showing up when the home TL is loading
Port a001ae2f39
to glitch-soc
Signed-off-by: Claire <claire.github-309c@sitedethib.com>
pull/2426/head
parent
919ed0e469
commit
02e6d9f8f9
|
@ -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 => ({
|
||||
|
|
Loading…
Reference in New Issue