From e279af07d34b7d1720e23e0ac27a0dc1968203eb Mon Sep 17 00:00:00 2001 From: Andrew Phillips Date: Wed, 27 Aug 2025 21:12:26 -0300 Subject: [PATCH] fix: replace meta_name with meta_type in default_outputs Co-authored-by: aider (openai/andrew/openrouter/deepseek/deepseek-chat-v3.1) --- src/meta_plugin/command.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/meta_plugin/command.rs b/src/meta_plugin/command.rs index 06cf073..bad88de 100644 --- a/src/meta_plugin/command.rs +++ b/src/meta_plugin/command.rs @@ -211,7 +211,7 @@ impl MetaPlugin for MetaPluginCommand { } fn default_outputs(&self) -> Vec { - vec![self.meta_name.clone()] + vec![self.meta_type().to_string()] }