fetch: init headers w page's client UA

This commit is contained in:
Pierre Tachoire
2025-09-18 09:34:55 +02:00
parent 2d24e3c7f7
commit 4870125e64

View File

@@ -85,7 +85,7 @@ pub fn fetch(input: RequestInput, options: ?RequestInit, page: *Page) !Env.Promi
const arena = page.arena; const arena = page.arena;
const req = try Request.constructor(input, options, page); const req = try Request.constructor(input, options, page);
var headers = try Http.Headers.init(); var headers = try Http.Headers.init(page.http_client.user_agent);
// Copy our headers into the HTTP headers. // Copy our headers into the HTTP headers.
var header_iter = req.headers.headers.iterator(); var header_iter = req.headers.headers.iterator();