fix: clone meta_plugin_type to avoid move error

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 15:55:21 -03:00
parent b23ec5604b
commit e0e5f5ff34

View File

@@ -141,8 +141,8 @@ fn build_config_table(settings: &config::Settings) -> Table {
}; };
// Get the plugin with no options to see its pure defaults // Get the plugin with no options to see its pure defaults
let default_plugin = get_meta_plugin( let _default_plugin = get_meta_plugin(
meta_plugin_type, meta_plugin_type.clone(),
None, None,
None, None,
); );