Another attempt to fix import order

This commit is contained in:
ZXY101
2024-01-30 10:29:39 +02:00
parent 14d0043bb7
commit 8757804140

View File

@@ -102,7 +102,7 @@ export async function processFiles(_files: File[]) {
const mangas: string[] = [];
const files = _files.sort((a, b) => {
return a.name.localeCompare(b.name, undefined, {
return decodeURI(a.name).localeCompare(decodeURI(b.name), undefined, {
numeric: true,
sensitivity: 'base'
});