diff --git a/src/plugins/comicsPlayer/plugin.js b/src/plugins/comicsPlayer/plugin.js index 24d12f0c0..073a9ee8b 100644 --- a/src/plugins/comicsPlayer/plugin.js +++ b/src/plugins/comicsPlayer/plugin.js @@ -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) {