From 29e8df571f368c4d1d4a6ffda83c2f5a996437a1 Mon Sep 17 00:00:00 2001 From: Emil Lerch Date: Sat, 25 Oct 2025 23:53:34 -0700 Subject: [PATCH] temporarily let it crash until I can fix --- src/main.zig | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/main.zig b/src/main.zig index bbad2a6..851b322 100644 --- a/src/main.zig +++ b/src/main.zig @@ -226,7 +226,9 @@ const SpeechHandler = struct { } try writer.print("\n\tSuggestion: {s}", .{suggestion}); } - + if (std.mem.eql(u8, error_info.message, "Audio buffer overflow, clearing buffer to prevent data loss")) { + @panic("fatal error"); + } if (error_info.recoverable) try writer.print("\n\tStatus: Recoverable - system will attempt to continue", .{}) else