Skip to content

Commit

Permalink
fix upper filenames
Browse files Browse the repository at this point in the history
  • Loading branch information
fidoriel committed Nov 7, 2024
1 parent 7809153 commit 76b0476
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion backend/parse_library.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
}
Expand Down

0 comments on commit 76b0476

Please sign in to comment.