From 2694e59ba6bdfb7150482aa7eafed823078b2c28 Mon Sep 17 00:00:00 2001 From: Peter Steinberger Date: Sun, 4 Jan 2026 17:02:23 +0000 Subject: [PATCH] fix(gateway): allow Control UI chat without node --- src/gateway/server-methods/chat.ts | 15 --------------- 1 file changed, 15 deletions(-) diff --git a/src/gateway/server-methods/chat.ts b/src/gateway/server-methods/chat.ts index ae8af53c3..569324b63 100644 --- a/src/gateway/server-methods/chat.ts +++ b/src/gateway/server-methods/chat.ts @@ -134,21 +134,6 @@ export const chatHandlers: GatewayRequestHandlers = { client, isWebchatConnect, }) => { - if ( - client && - isWebchatConnect(client.connect) && - !context.hasConnectedMobileNode() - ) { - respond( - false, - undefined, - errorShape( - ErrorCodes.UNAVAILABLE, - "web chat disabled: no connected iOS/Android nodes", - ), - ); - return; - } if (!validateChatSendParams(params)) { respond( false,