Merge branch 'main' of https://git.devjun.net/kimhyungsik/ax_hub_mcp_tool
All checks were successful
Deploy to OCIWP / deploy (push) Successful in 1m53s

This commit is contained in:
jade
2026-07-31 14:59:17 +09:00

View File

@@ -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'));
}