Bump patch version

This commit is contained in:
GitHub Copilot
2026-01-27 22:31:03 +00:00
parent 03239821f4
commit 9ea4e18fcc
2 changed files with 3 additions and 3 deletions
+2 -2
View File
@@ -587,7 +587,7 @@ class LocalServer:
except asyncio.TimeoutError:
# Send keepalive comment
await response.write(b": keepalive\n\n")
except (ConnectionResetError, ConnectionAbortedError):
except (ConnectionResetError, ConnectionAbortedError, aiohttp.ClientConnectionError):
break
finally:
self._sse_subscribers.remove(queue)
@@ -855,7 +855,7 @@ class LocalServer:
</head>
<body>
<div id=\"terminal\" class=\"textual-terminal\" data-session-websocket-url=\"{ws_url}\" data-font-size=\"16\" data-scrollback=\"1000\"></div>
<script src=\"/static/js/terminal.js\"></script>
<script type=\"module\" src=\"/static/js/terminal.js\"></script>
</body>
</html>"""
return web.Response(text=html_content, content_type="text/html")