fix: update config type references and method calls

Co-authored-by: aider (openai/andrew/openrouter/qwen/qwen3-coder) <aider@aider.chat>
This commit is contained in:
Andrew Phillips
2025-08-16 12:03:13 -03:00
parent 28b7199424
commit c4b2a5d7e7
9 changed files with 11 additions and 12 deletions

View File

@@ -200,7 +200,7 @@ pub fn settings_meta_plugin_types(cmd: &mut Command, settings: &config::Settings
let mut meta_plugin_types = Vec::new();
// Handle comma-separated values in each meta_plugins argument
for meta_plugin_names_str in &settings.meta_plugins {
for meta_plugin_names_str in &settings.meta_plugins_names() {
let meta_plugin_names: Vec<&str> = meta_plugin_names_str.split(',').collect();
for name in meta_plugin_names {
@@ -253,8 +253,7 @@ pub fn settings_digest_type(cmd: &mut Command, settings: &config::Settings) -> M
pub fn settings_compression_type(cmd: &mut Command, settings: &config::Settings) -> CompressionType {
let compression_name = settings
.compression
.clone()
.compression()
.unwrap_or(CompressionType::LZ4.to_string());
let compression_type_opt = CompressionType::from_str(&compression_name);