From c381e3aa38320bc08af27df923ccb0a78915736b Mon Sep 17 00:00:00 2001 From: Andrew Phillips Date: Wed, 27 Aug 2025 16:29:08 -0300 Subject: [PATCH] fix: handle serde_yaml Value::Tagged variant Co-authored-by: aider (openai/andrew/openrouter/deepseek/deepseek-chat-v3.1) --- src/modes/status.rs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/modes/status.rs b/src/modes/status.rs index 015488e..ae808ab 100644 --- a/src/modes/status.rs +++ b/src/modes/status.rs @@ -202,6 +202,9 @@ fn build_config_table(settings: &config::Settings) -> Table { serde_yaml::Value::Mapping(_) => { serde_yaml::to_string(value).unwrap_or_else(|_| "{}".to_string()) } + serde_yaml::Value::Tagged(_) => { + serde_yaml::to_string(value).unwrap_or_else(|_| "tagged".to_string()) + } }; // Trim any extra whitespace from the serialized values let value_str = value_str.trim().to_string();