From 1f8cbdd360a3f5a9aec7db100cac25172f670a27 Mon Sep 17 00:00:00 2001 From: figsoda Date: Thu, 1 Sep 2022 14:24:49 -0400 Subject: [PATCH] fix: incorrect warnings for decompression --- src/commands/mod.rs | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/commands/mod.rs b/src/commands/mod.rs index 133d14e..9236a25 100644 --- a/src/commands/mod.rs +++ b/src/commands/mod.rs @@ -381,7 +381,10 @@ fn check_mime_type( // File ending with extension // Try to detect the extension and warn the user if it differs from the written one let outer_ext = format.iter().next_back().unwrap(); - if outer_ext != &detected_format { + if !outer_ext + .compression_formats + .ends_with(detected_format.compression_formats) + { warning!( "The file extension: `{}` differ from the detected extension: `{}`", outer_ext,