From 24954abee76b2100037211a8f01633533998ec26 Mon Sep 17 00:00:00 2001 From: theguymadmax Date: Fri, 29 Aug 2025 16:20:33 -0400 Subject: [PATCH] Fix comic player not loading images with uppercase extensions --- src/plugins/comicsPlayer/plugin.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) {