browser: ignore about:blank navigation

This commit is contained in:
Pierre Tachoire
2024-12-29 11:05:22 +01:00
parent 07869f3c48
commit 5f8327eaf7

View File

@@ -257,6 +257,11 @@ pub const Page = struct {
log.debug("starting GET {s}", .{uri});
// if the uri is about:blank, nothing to do.
if (std.mem.eql(u8, "about:blank", uri)) {
return;
}
// own the url
if (self.rawuri) |prev| alloc.free(prev);
self.rawuri = try alloc.dupe(u8, uri);