From 19f8a1a2e54ff65e5f43a28293eb18bb512f5d20 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Adri=C3=A0=20Arrufat?= Date: Tue, 12 May 2026 09:00:07 +0200 Subject: [PATCH] config: handle agent mode in disableSubframes --- src/Config.zig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Config.zig b/src/Config.zig index ecac3c68..d2244c61 100644 --- a/src/Config.zig +++ b/src/Config.zig @@ -283,7 +283,7 @@ pub fn obeyRobots(self: *const Config) bool { pub fn disableSubframes(self: *const Config) bool { return switch (self.mode) { - inline .serve, .fetch, .mcp => |opts| opts.disable_subframes, + inline .serve, .fetch, .mcp, .agent => |opts| opts.disable_subframes, else => unreachable, }; }