Fix: for文でスキップではなくループの終了を行っていた問題 / Feat: #10

This commit is contained in:
2026-04-30 20:10:59 +09:00
parent 90b308afa0
commit 3b66c47aa3
4 changed files with 32 additions and 22 deletions
+1 -1
View File
@@ -111,7 +111,7 @@ const processMessage = async (message: any) => {
for (const point of message.points) {
const scaleMsg = scaleMessages[String(point.scale)];
if (!scaleMsg)
break;
continue;
points[scaleMsg]?.push(point);
}