From 6cbe1fb2618af557262a8717c494e7958494bf2d Mon Sep 17 00:00:00 2001 From: Matthias Nott <mnott@mnsoft.org> Date: Sun, 08 Mar 2026 07:03:30 +0100 Subject: [PATCH] fix: robust WebSocket reconnection after daemon restart --- types/index.ts | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/types/index.ts b/types/index.ts index fc57c4a..bea9e77 100644 --- a/types/index.ts +++ b/types/index.ts @@ -20,7 +20,7 @@ macAddress?: string; } -export type ConnectionStatus = "disconnected" | "connecting" | "connected" | "compacting"; +export type ConnectionStatus = "disconnected" | "connecting" | "reconnecting" | "connected" | "compacting"; // --- WebSocket protocol --- -- Gitblit v1.3.1