From 2894bef9ef7425def11bef689caa0286007bcfff Mon Sep 17 00:00:00 2001 From: Karl Seguin Date: Mon, 19 Jan 2026 15:06:43 +0800 Subject: [PATCH] Update src/crash_handler.zig Co-authored-by: Pierre Tachoire --- src/crash_handler.zig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/crash_handler.zig b/src/crash_handler.zig index a8e22130..a29c46e1 100644 --- a/src/crash_handler.zig +++ b/src/crash_handler.zig @@ -79,7 +79,7 @@ fn report(reason: []const u8) !void { var args_buffer: [4096]u8 = undefined; var writer: std.Io.Writer = .fixed(&args_buffer); - try writer.print("https://crash.lightpanda.io/?v={s}&r=", .{lp.build_config.git_commit}); + try writer.print("https://crash.lightpanda.io/c?v={s}&r=", .{lp.build_config.git_commit}); for (reason) |b| { switch (b) { 'A'...'Z', 'a'...'z', '0'...'9', '-', '.', '_' => try writer.writeByte(b),