Personal Site
0
fork

Configure Feed

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

Make sse wait 20s between messages instead of 5 since it doesnt need to be that real time

20s better than 30s as that way it wont be lined up with the animation.
TODO: make animation timing randomised

+1 -1
+1 -1
src/pages/now-playing-sse.ts
··· 44 44 console.error("/now-playing-sse", "GOT ERROR:", err); 45 45 }); 46 46 await new Promise((res, rej) => { 47 - setTimeout(res, 5000); 47 + setTimeout(res, 20 * 1000); 48 48 abort.signal.addEventListener("abort", rej); 49 49 }); 50 50 }