clay-server 2.14.0-beta.6 → 2.14.0-beta.7

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/lib/public/app.js CHANGED
@@ -871,6 +871,11 @@ import { initCommandPalette, handlePaletteSessionSwitch, setPaletteVersion } fro
871
871
  savedMainWs = null;
872
872
  }
873
873
  mateWs = null;
874
+ // If main ws is also closed (server shutdown), show disconnect screen
875
+ if (!ws || ws.readyState !== WebSocket.OPEN) {
876
+ setStatus("disconnected");
877
+ scheduleReconnect();
878
+ }
874
879
  };
875
880
  }
876
881
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "clay-server",
3
- "version": "2.14.0-beta.6",
3
+ "version": "2.14.0-beta.7",
4
4
  "description": "Web UI for Claude Code. Any device. Push notifications.",
5
5
  "bin": {
6
6
  "clay-server": "./bin/cli.js",