diff --git a/SrcJyAlist.js b/SrcJyAlist.js index 8fd7573b..7338c741 100644 --- a/SrcJyAlist.js +++ b/SrcJyAlist.js @@ -44,7 +44,7 @@ function getlist(data,isdir) { return isdir ? item.is_dir : fileFilter?contain.test(item.name):item.is_dir==0; }) list = list.sort((a,b)=>{ - return b.name - a.name; + return b.name.replace(/[^\d]/g, " ") - a.name.replace(/[^\d]/g, " "); let oDate1 = new Date(a.modified); let oDate2 = new Date(b.modified); if(a.modified!=b.modified){