We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 98b8277 commit 0149ce7Copy full SHA for 0149ce7
src/browser/browser.zig
@@ -276,6 +276,11 @@ pub const Page = struct {
276
277
log.debug("starting GET {s}", .{uri});
278
279
+ // if the uri is about:blank, nothing to do.
280
+ if (std.mem.eql(u8, "about:blank", uri)) {
281
+ return;
282
+ }
283
+
284
// own the url
285
if (self.rawuri) |prev| alloc.free(prev);
286
self.rawuri = try alloc.dupe(u8, uri);
0 commit comments