diff options
author | Paul Frazee <pfrazee@gmail.com> | 2024-01-10 22:27:14 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-01-10 22:27:14 -0800 |
commit | 7ab4be6f7d5a89f752ebd989d9c730a9e135a989 (patch) | |
tree | b6d45ac19bf83af827268fb3c282d6db3643dcc1 /src/view/com/feeds/FeedPage.tsx | |
parent | 0442dcc1a01a613985155c86a5ee042085553f33 (diff) | |
download | voidsky-7ab4be6f7d5a89f752ebd989d9c730a9e135a989.tar.zst |
Reduce polling (#2465)
* Move profile and preference polling to polls-on-foreground * Refetch prefs on feeds screen refresh since polling no longer occurs * Reduce notifications polling by 50% if there's already an unread * Disable feed polling if we know we have content * Disable the hard refresh after 1 hour in case it's the cause of the random feed refresh bug * Fix types
Diffstat (limited to 'src/view/com/feeds/FeedPage.tsx')
-rw-r--r-- | src/view/com/feeds/FeedPage.tsx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/view/com/feeds/FeedPage.tsx b/src/view/com/feeds/FeedPage.tsx index 2d0b17f38..49f280981 100644 --- a/src/view/com/feeds/FeedPage.tsx +++ b/src/view/com/feeds/FeedPage.tsx @@ -174,6 +174,7 @@ export function FeedPage({ feed={feed} feedParams={feedParams} pollInterval={POLL_FREQ} + disablePoll={hasNew} scrollElRef={scrollElRef} onScrolledDownChange={setIsScrolledDown} onHasNew={setHasNew} |