Compare commits

...
Sign in to create a new pull request.

1 commit

Author SHA1 Message Date
Sirius DevOps
3a97101ddd fix: restore news ticker on the map HUD
Boot deferred news to the News view for overlay speed. Bring the footer
ticker back after map init starts; article bodies stay off the wire.
2026-08-27 21:36:54 -04:00

View file

@ -2630,6 +2630,9 @@ initSettings();
initMarketTicker();
checkHealth();
initMap();
// Ticker lives on the map HUD — load after overlays start so it does not
// contend with the first bbox burst. Payload is slim (no article bodies).
setTimeout(() => loadNews(true), 400);
setInterval(checkHealth, 30000);
</script>
</body>