keep checking for new kcpp updates every 6 hours after gerbil was launched

This commit is contained in:
Egor 2025-11-01 22:22:10 -07:00
parent fe84287463
commit 206351c284

View file

@ -120,6 +120,15 @@ export const App = () => {
setTimeout(() => {
checkForUpdates();
}, 5000);
const interval = setInterval(
() => {
checkForUpdates();
},
6 * 60 * 60 * 1000
);
return () => clearInterval(interval);
}
};