From cafa4f51736e9333b215090ab2d7d3f3a5e58fbd Mon Sep 17 00:00:00 2001 From: Karl Seguin Date: Fri, 23 Jan 2026 18:58:40 +0800 Subject: [PATCH] correct crash report host --- 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 ca24cf31..e9d30e95 100644 --- a/src/crash_handler.zig +++ b/src/crash_handler.zig @@ -79,7 +79,7 @@ fn report(reason: []const u8, begin_addr: usize) !void { var url_buffer: [4096]u8 = undefined; const url = blk: { var writer: std.Io.Writer = .fixed(&url_buffer); - try writer.print("http://localhost:1234/c?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),