Merge pull request #7119 from theguymadmax/comic-extension-fix

This commit is contained in:
Bill Thornton
2025-08-30 11:24:23 -04:00
committed by GitHub
+1 -1
View File
@@ -395,7 +395,7 @@ class ArchiveSource {
files = files.filter((file) => {
const name = file.file.name;
const index = name.lastIndexOf('.');
return index !== -1 && IMAGE_FORMATS.includes(name.slice(index + 1));
return index !== -1 && IMAGE_FORMATS.includes(name.slice(index + 1).toLowerCase());
});
files.sort((a, b) => {
if (a.file.name < b.file.name) {