UPDATE: Improved chat transmission speed by ~50%

This commit is contained in:
white
2025-01-28 17:23:40 +00:00
parent 25235c5c26
commit 12c576de2f
3 changed files with 20 additions and 17 deletions

View File

@@ -26,7 +26,7 @@ const StreamerRoute: React.FC = () => {
checkStreamStatus();
// Poll for live status changes
const interval = setInterval(checkStreamStatus, 1000); // Check every 90 seconds
const interval = setInterval(checkStreamStatus, 30000); // Check every 90 seconds
return () => clearInterval(interval);
}, [streamerName]);