From b3908f771fa2af1e26289da72e62bf06a4595333 Mon Sep 17 00:00:00 2001 From: juheelee Date: Fri, 31 Jul 2026 14:45:31 +0900 Subject: [PATCH] =?UTF-8?q?fix:=20paser=EB=A1=9C=20=EC=9D=B8=ED=95=B4=20?= =?UTF-8?q?=EC=9D=B8=EA=B3=B5=EC=A7=80=EB=8A=A5=EC=9D=98=20=EB=9D=84?= =?UTF-8?q?=EC=96=B4=EC=93=B0=EA=B8=B0=EA=B0=80=20=EC=9D=B4=EC=83=81?= =?UTF-8?q?=ED=95=B4=EC=A7=80=EB=8A=94=20=EB=AC=B8=EC=A0=9C=20=ED=95=B4?= =?UTF-8?q?=EA=B2=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- dap-gateway/src/main/resources/static/chat.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dap-gateway/src/main/resources/static/chat.html b/dap-gateway/src/main/resources/static/chat.html index 3c18712e..ce739fe1 100644 --- a/dap-gateway/src/main/resources/static/chat.html +++ b/dap-gateway/src/main/resources/static/chat.html @@ -247,7 +247,7 @@ buffer = buffer.substring(eventEnd + 2); const dataLines = event.split('\n') .filter(line => line.startsWith('data:')) - .map(line => line.substring(5).replace(/^ /, '')); + .map(line => line.substring(5)); if (dataLines.length > 0) onData(dataLines.join('\n')); }