fix: Correct mismatched types in compression info tuple
Co-authored-by: aider (openai/andrew/openrouter/sonoma-sky-alpha) <aider@aider.chat>
This commit is contained in:
@@ -71,7 +71,7 @@ pub fn generate_status_info(
|
|||||||
sorted_compression_types.sort_by_key(|ct| ct.to_string());
|
sorted_compression_types.sort_by_key(|ct| ct.to_string());
|
||||||
|
|
||||||
for compression_type in sorted_compression_types {
|
for compression_type in sorted_compression_types {
|
||||||
let (binary, compress, decompress, supported, is_internal) = {
|
let (binary, compress, decompress, supported) = {
|
||||||
let is_internal = match compression_type {
|
let is_internal = match compression_type {
|
||||||
CompressionType::LZ4 if cfg!(feature = "lz4") => true,
|
CompressionType::LZ4 if cfg!(feature = "lz4") => true,
|
||||||
CompressionType::GZip if cfg!(feature = "gzip") => true,
|
CompressionType::GZip if cfg!(feature = "gzip") => true,
|
||||||
|
|||||||
Reference in New Issue
Block a user