diff options
author | 2022-02-04 02:43:49 -0800 | |
---|---|---|
committer | 2022-02-04 02:43:49 -0800 | |
commit | c03b7a6f19044e37985128a9e1751a8dc82f13fc (patch) | |
tree | 277bc1c69be2c9e80571f6fbed10e94060b2b613 /src | |
parent | 909e6a6bab01661c1e015658987ba6f53ee3ffd2 (diff) | |
download | bun-c03b7a6f19044e37985128a9e1751a8dc82f13fc.tar.gz bun-c03b7a6f19044e37985128a9e1751a8dc82f13fc.tar.zst bun-c03b7a6f19044e37985128a9e1751a8dc82f13fc.zip |
reminder
Diffstat (limited to 'src')
-rw-r--r-- | src/http.zig | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/http.zig b/src/http.zig index 03ebf50d3..62a07cfc0 100644 --- a/src/http.zig +++ b/src/http.zig @@ -3332,9 +3332,7 @@ pub const Server = struct { if (!finished) { req_ctx.bundler.router.?.match(*Server, server, RequestContext, req_ctx) catch |err| { switch (err) { - error.ModuleNotFound => { - req_ctx.sendNotFound() catch {}; - }, + error.ModuleNotFound => {}, else => { Output.printErrorln("FAIL [{s}] - {s}: {s}", .{ @errorName(err), req.method, req.path }); did_print = true; |