From ee6869a94c9d578854cc3db97f9410121c137180 Mon Sep 17 00:00:00 2001 From: Andrew Phillips Date: Tue, 29 Jul 2025 11:19:12 -0300 Subject: [PATCH] fix: make meta_plugin mutable to call meta_name() method Co-authored-by: aider (openai/andrew.openrouter.qwen.qwen3-coder) --- src/modes/status.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/modes/status.rs b/src/modes/status.rs index 40c0b42..72948cf 100644 --- a/src/modes/status.rs +++ b/src/modes/status.rs @@ -132,7 +132,7 @@ fn build_meta_plugin_table() -> Table { let default_type = meta_plugin::default_meta_plugin_type(); for meta_plugin_type in MetaPluginType::iter() { - let meta_plugin = meta_plugin::get_meta_plugin(meta_plugin_type.clone()); + let mut meta_plugin = meta_plugin::get_meta_plugin(meta_plugin_type.clone()); let is_supported = meta_plugin.is_supported(); let is_default = meta_plugin_type == default_type;