From 36338c91974974a8e259278340349d705576e25f Mon Sep 17 00:00:00 2001 From: Henry Date: Sat, 19 Aug 2023 16:10:16 +0100 Subject: [PATCH] pass socketIOClientId to incomingInput --- packages/server/src/index.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/packages/server/src/index.ts b/packages/server/src/index.ts index 23b5bdf4..c3b85483 100644 --- a/packages/server/src/index.ts +++ b/packages/server/src/index.ts @@ -806,7 +806,8 @@ export class App { incomingInput = { question: req.body.question ?? 'hello', overrideConfig, - history: [] + history: [], + socketIOClientId: req.body.socketIOClientId } }