From 6ca1e6c6dd81c67ac699c738fd971369626cc773 Mon Sep 17 00:00:00 2001 From: Pierre Tachoire Date: Mon, 3 Mar 2025 17:16:53 +0100 Subject: [PATCH] cdp: let the inspector return the response When a command is forwarded to the inspector, it handles directly the reponse to the message. --- src/cdp/runtime.zig | 1 + 1 file changed, 1 insertion(+) diff --git a/src/cdp/runtime.zig b/src/cdp/runtime.zig index c054521e..5a6e2948 100644 --- a/src/cdp/runtime.zig +++ b/src/cdp/runtime.zig @@ -56,6 +56,7 @@ fn sendInspector(cmd: anytype, action: anytype) !void { } } + // the result to return is handled directly by the inspector. bc.session.callInspector(cmd.input.json); }