fix: remove duplicate meta_type and replace meta_name with meta_type

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:17:48 -03:00
parent e279af07d3
commit fc54b8ff8f
5 changed files with 11 additions and 8 deletions

View File

@@ -87,7 +87,7 @@ impl MetaService {
let mut output_names: std::collections::HashMap<String, Vec<String>> = std::collections::HashMap::new();
for plugin in plugins.iter() {
let plugin_name = plugin.meta_name();
let plugin_name = plugin.meta_type().to_string();
// For each plugin, collect all the output names it might write to
for (internal_name, output_config) in plugin.outputs() {
let output_name = match output_config {