add driver field to navigate telemetry

This commit is contained in:
Karl Seguin
2025-03-18 10:40:04 +08:00
parent c9bc5be42b
commit 2e7342a59c
2 changed files with 1 additions and 1 deletions

View File

@@ -98,7 +98,6 @@ pub const LightPanda = struct {
try std.json.stringify(event, .{ .emit_null_optional_fields = false }, arr.writer(self.allocator));
var response_header_buffer: [2048]u8 = undefined;
const result = try client.fetch(.{
.method = .POST,
.payload = arr.items,

View File

@@ -99,6 +99,7 @@ pub const Event = union(enum) {
const Navigate = struct {
tls: bool,
proxy: bool,
driver: []const u8 = "cdp",
};
};