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 07869f3 commit 5f8327eCopy full SHA for 5f8327e
src/browser/browser.zig
@@ -257,6 +257,11 @@ pub const Page = struct {
257
258
log.debug("starting GET {s}", .{uri});
259
260
+ // if the uri is about:blank, nothing to do.
261
+ if (std.mem.eql(u8, "about:blank", uri)) {
262
+ return;
263
+ }
264
+
265
// own the url
266
if (self.rawuri) |prev| alloc.free(prev);
267
self.rawuri = try alloc.dupe(u8, uri);
0 commit comments