refactor: update plugin creation to use consistent config approach

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 10:50:11 -03:00
parent 7bc6dd89a1
commit 0ed7e3aae7
2 changed files with 3 additions and 21 deletions

View File

@@ -353,7 +353,7 @@ impl ItemService {
let mut plugins: Vec<Box<dyn MetaPlugin>> = plugin_types
.iter()
.map(|p| get_meta_plugin(p.clone()))
.map(|p| get_meta_plugin_with_config(p.clone(), None, None))
.collect();
debug!("ITEM_SERVICE: Created {} meta plugins for MCP item", plugins.len());