Fix: for文でスキップではなくループの終了を行っていた問題 / Feat: #10
This commit is contained in:
@@ -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);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user