this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Some debugging if this actually runs

+5
+5
src/app.jsx
··· 86 86 setInterval(() => { 87 87 if (!window.__IDLE__) return; 88 88 const { statuses, unfurledLinks } = states; 89 + let keysCount = 0; 89 90 for (const key in statuses) { 90 91 try { 91 92 const $post = document.querySelector(`[data-state-post-id~="${key}"]`); ··· 100 101 break; 101 102 } 102 103 } 104 + keysCount++; 103 105 } 104 106 } catch (e) {} 107 + } 108 + if (keysCount) { 109 + console.info(`GC: Removed ${keysCount} keys`); 105 110 } 106 111 }, 15 * 60 * 1000); 107 112