From 70a0f72f78534551133bc951c22f30f41adf335c Mon Sep 17 00:00:00 2001 From: Jason Date: Wed, 15 Apr 2026 15:09:03 +0800 Subject: [PATCH] fix(stream-check): add missing error_category field in fallback The error_category field was added to StreamCheckResult in this branch but the fallback constructor in stream_check_all_providers was not updated, which broke cargo build. --- src-tauri/src/commands/stream_check.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src-tauri/src/commands/stream_check.rs b/src-tauri/src/commands/stream_check.rs index be0de3f12..9fc605775 100644 --- a/src-tauri/src/commands/stream_check.rs +++ b/src-tauri/src/commands/stream_check.rs @@ -133,6 +133,7 @@ pub async fn stream_check_all_providers( model_used: String::new(), tested_at: chrono::Utc::now().timestamp(), retry_count: 0, + error_category: None, } });