What's new in Kiosk Satellite 2026.8.51
Bug Fixes
- The dashboard no longer stops loading with "ERR_RESPONSE_HEADERS_TOO_BIG" after the app has been running for a while, on an installation using the secure context proxy (#230). Every response the proxy handed back to the page left a copy of two of Home Assistant's headers behind in the proxy's own defaults, so each page load carried a slightly larger block of headers than the one before it, and once that block passed the quarter megabyte the browser allows, nothing from that Home Assistant would load at all until the app was restarted. How long that took depended on how busy the dashboard was, which is why it looked random. Responses now carry exactly the headers Home Assistant sent and nothing accumulates.
- The secure context proxy no longer attaches a body to a response that cannot have one. Home Assistant answers a request for a dashboard file the browser already has with an empty "not modified" reply, and the proxy forwarded that with an empty body attached; the browser, knowing the reply has no body, left those few bytes sitting in the connection and read them as the beginning of the next reply that came down it, which is a page load that fails for no visible reason.