fix: replace meta_name with meta_type in default_outputs

Co-authored-by: aider (openai/andrew/openrouter/deepseek/deepseek-chat-v3.1) <aider@aider.chat>
This commit is contained in:
Andrew Phillips
2025-08-27 21:12:26 -03:00
parent 7b1820cb63
commit e279af07d3

View File

@@ -211,7 +211,7 @@ impl MetaPlugin for MetaPluginCommand {
} }
fn default_outputs(&self) -> Vec<String> { fn default_outputs(&self) -> Vec<String> {
vec![self.meta_name.clone()] vec![self.meta_type().to_string()]
} }