Skip to content

Commit b3054d6

Browse files
committed
cdp: browserContextId is optional in Target.createTarget
https://chromedevtools.github.io/devtools-protocol/tot/Target/#method-createTarget
1 parent 826f826 commit b3054d6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/cdp/target.zig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -278,7 +278,7 @@ fn createTarget(
278278
url: []const u8,
279279
width: ?u64 = null,
280280
height: ?u64 = null,
281-
browserContextId: []const u8,
281+
browserContextId: ?[]const u8 = null,
282282
enableBeginFrameControl: bool = false,
283283
newWindow: bool = false,
284284
background: bool = false,

0 commit comments

Comments
 (0)