From f34829720c09309bf162620a8fb56ea5b4688796 Mon Sep 17 00:00:00 2001 From: Julian Date: Fri, 11 Jul 2025 10:50:04 +0200 Subject: [PATCH] fix(protocol): include error.data in request handler error responses --- src/shared/protocol.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/shared/protocol.ts b/src/shared/protocol.ts index 50bdcc3ca..e79cb8acb 100644 --- a/src/shared/protocol.ts +++ b/src/shared/protocol.ts @@ -421,6 +421,7 @@ export abstract class Protocol< ? error["code"] : ErrorCode.InternalError, message: error.message ?? "Internal error", + data: error.data, }, }); },