diff --git a/src/bun.js/webcore/Response.zig b/src/bun.js/webcore/Response.zig index 0386abf933..951f7b9c3b 100644 --- a/src/bun.js/webcore/Response.zig +++ b/src/bun.js/webcore/Response.zig @@ -668,6 +668,7 @@ pub fn constructError( .#body = Body{ .value = .{ .Empty = {} }, }, + .#url = bun.String.empty, }, ); @@ -751,6 +752,7 @@ pub fn constructor(globalThis: *jsc.JSGlobalObject, callframe: *jsc.CallFrame, j var response = bun.new(Response, Response{ .#body = body, .#init = _init, + .#url = bun.String.empty, .#js_ref = .initWeak(js_this), });