@cryptiklemur/lattice 1.37.0 → 1.37.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cryptiklemur/lattice",
3
- "version": "1.37.0",
3
+ "version": "1.37.1",
4
4
  "description": "Multi-machine agentic dashboard for Claude Code. Monitor sessions, manage MCP servers and skills, orchestrate across mesh-networked nodes.",
5
5
  "license": "MIT",
6
6
  "author": "Aaron Scherer <me@aaronscherer.me>",
@@ -250,7 +250,7 @@ export async function startDaemon(portOverride?: number | null): Promise<void> {
250
250
  }
251
251
  }
252
252
 
253
- if (!isAuthenticated(req, config.passphraseHash)) {
253
+ if (url.pathname !== "/ws" && !isAuthenticated(req, config.passphraseHash)) {
254
254
  return new Response(buildLoginPage(), {
255
255
  status: 200,
256
256
  headers: { "Content-Type": "text/html; charset=utf-8" },