From 74ebb87823234ac8cffdff98f7676c6b1bbd0b25 Mon Sep 17 00:00:00 2001 From: Andrew Phillips Date: Wed, 27 Aug 2025 15:57:25 -0300 Subject: [PATCH] fix: display default digest plugin options Co-authored-by: aider (openai/andrew/openrouter/deepseek/deepseek-chat-v3.1) --- src/modes/status.rs | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/modes/status.rs b/src/modes/status.rs index bd455af..c719d45 100644 --- a/src/modes/status.rs +++ b/src/modes/status.rs @@ -160,9 +160,13 @@ fn build_config_table(settings: &config::Settings) -> Table { .map(|(k, v)| (k.clone(), serde_yaml::Value::String(v.clone()))) .collect(); + // Convert options from HashMap to the correct type + // (they're already in the correct type, so we can use them directly) + let options_converted = plugin_config.options.clone(); + let actual_plugin = get_meta_plugin( meta_plugin_type, - Some(plugin_config.options.clone()), + Some(options_converted), Some(outputs_converted), );