From df9f3311e9b10c56981531ccea2d65e59b9bd105 Mon Sep 17 00:00:00 2001 From: Bas van den Aakster Date: Fri, 12 Dec 2025 20:52:24 +0100 Subject: [PATCH] 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. --- src/rpc.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/rpc.ts b/src/rpc.ts index da58029..805af70 100644 --- a/src/rpc.ts +++ b/src/rpc.ts @@ -712,6 +712,7 @@ export async function handleRpc( success: false, error: 'Missing or invalid message', }); + continue; } if (!signature || typeof signature !== 'string') {