From 76b0476e2d449217759b8cb00ad7e42dc3741660 Mon Sep 17 00:00:00 2001 From: fidoriel <49869342+fidoriel@users.noreply.github.com> Date: Thu, 7 Nov 2024 18:40:56 +0100 Subject: [PATCH] fix upper filenames --- backend/parse_library.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/parse_library.rs b/backend/parse_library.rs index c11f58e..f7ee161 100644 --- a/backend/parse_library.rs +++ b/backend/parse_library.rs @@ -288,7 +288,7 @@ where } if let Some(extension) = file_pth.extension() { - if !mesh_files.contains(&extension.to_str().unwrap()) { + if !mesh_files.contains(&extension.to_str().unwrap().to_lowercase().as_str()) { continue; } }