Fix: Add missing continue statement in message validation

The message validation was missing a continue statement, causing
the handler to continue executing even after pushing an error response.
This led to undefined errors when trying to map over undefined values.
This commit is contained in:
2025-12-12 20:52:24 +01:00
parent 9f30f8b46d
commit df9f3311e9

View File

@@ -712,6 +712,7 @@ export async function handleRpc(
success: false,
error: 'Missing or invalid message',
});
continue;
}
if (!signature || typeof signature !== 'string') {