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 6e42df2 commit 28ec8d4Copy full SHA for 28ec8d4
src/browser/navigation/navigation.zig
@@ -88,7 +88,7 @@ pub const NavigationHistoryEntry = struct {
88
pub fn get_sameDocument(self: *const NavigationHistoryEntry, page: *Page) !bool {
89
const _url = self.url orelse return false;
90
const url = try URL.parse(_url, null);
91
- return page.url.eqlDocument(&url, page.arena);
+ return page.url.eqlDocument(&url, page.call_arena);
92
}
93
94
pub fn get_url(self: *const NavigationHistoryEntry) ?[]const u8 {
0 commit comments