mirror of
https://github.com/cheeaun/phanpy.git
synced 2025-02-02 06:06:41 +01:00
Don't reuse var for both timeout and interval
This commit is contained in:
parent
4ebfb544aa
commit
99ee6c3979
1 changed files with 3 additions and 2 deletions
|
@ -46,6 +46,7 @@ export default memo(function BackgroundService({ isLoggedIn }) {
|
|||
|
||||
useEffect(() => {
|
||||
let sub;
|
||||
let streamTimeout;
|
||||
let pollNotifications;
|
||||
if (isLoggedIn && visible) {
|
||||
const { masto, streaming, instance } = api();
|
||||
|
@ -56,7 +57,7 @@ export default memo(function BackgroundService({ isLoggedIn }) {
|
|||
let hasStreaming = false;
|
||||
// 2. Start streaming
|
||||
if (streaming) {
|
||||
pollNotifications = setTimeout(() => {
|
||||
streamTimeout = setTimeout(() => {
|
||||
(async () => {
|
||||
try {
|
||||
hasStreaming = true;
|
||||
|
@ -94,7 +95,7 @@ export default memo(function BackgroundService({ isLoggedIn }) {
|
|||
return () => {
|
||||
sub?.unsubscribe?.();
|
||||
sub = null;
|
||||
clearTimeout(pollNotifications);
|
||||
clearTimeout(streamTimeout);
|
||||
clearInterval(pollNotifications);
|
||||
};
|
||||
}, [visible, isLoggedIn]);
|
||||
|
|
Loading…
Reference in a new issue