From 33b989fffcb7786f0794b2898a712848f18d6d60 Mon Sep 17 00:00:00 2001 From: Lim Chee Aun Date: Tue, 31 Oct 2023 00:42:24 +0800 Subject: [PATCH] Loosen the scrollTop check --- src/components/timeline.jsx | 2 +- src/pages/notifications.jsx | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/components/timeline.jsx b/src/components/timeline.jsx index 9d05210c..9da2b43e 100644 --- a/src/components/timeline.jsx +++ b/src/components/timeline.jsx @@ -235,7 +235,7 @@ function Timeline({ }); if ( snapStates.settings.autoRefresh && - scrollableRef.current.scrollTop === 0 && + scrollableRef.current.scrollTop < 16 && (disableIdleCheck || window.__IDLE__) && !inBackground() ) { diff --git a/src/pages/notifications.jsx b/src/pages/notifications.jsx index 67cb9919..f7b18f51 100644 --- a/src/pages/notifications.jsx +++ b/src/pages/notifications.jsx @@ -179,7 +179,7 @@ function Notifications({ columnMode }) { ({ disableIdleCheck = false } = {}) => { console.log('✨ Load updates', { autoRefresh: snapStates.settings.autoRefresh, - scrollTop: scrollableRef.current?.scrollTop === 0, + scrollTop: scrollableRef.current?.scrollTop, inBackground: inBackground(), disableIdleCheck, notificationsShowNew: snapStates.notificationsShowNew, @@ -187,7 +187,7 @@ function Notifications({ columnMode }) { }); if ( snapStates.settings.autoRefresh && - scrollableRef.current?.scrollTop === 0 && + scrollableRef.current?.scrollTop < 16 && (disableIdleCheck || window.__IDLE__) && !inBackground() && snapStates.notificationsShowNew &&