From cae8ac17990cac0ba0998382c815492352437b8c Mon Sep 17 00:00:00 2001 From: Hare Date: Thu, 27 Aug 2026 13:46:10 +0900 Subject: [PATCH] fix: allow missing Objective query snippets --- crates/worker/src/feature/builtin/resource_projection.rs | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/crates/worker/src/feature/builtin/resource_projection.rs b/crates/worker/src/feature/builtin/resource_projection.rs index 0879f415..d766f8e3 100644 --- a/crates/worker/src/feature/builtin/resource_projection.rs +++ b/crates/worker/src/feature/builtin/resource_projection.rs @@ -63,7 +63,7 @@ pub(super) struct ModelObjectiveQueryResponse { struct ModelObjectiveQueryItem { objective: String, title: String, - summary: String, + summary: Option, state: String, created_at: Option, updated_at: Option, @@ -331,7 +331,7 @@ fn project_objective_query_item(value: &Value) -> Result