Browse Source

Fix: stable reject stat

SukkaW 1 year ago
parent
commit
6308ce2536
1 changed files with 1 additions and 1 deletions
  1. 1 1
      Build/build-reject-domainset.ts

+ 1 - 1
Build/build-reject-domainset.ts

@@ -156,7 +156,7 @@ export const buildRejectDomainSet = task(import.meta.path, async (span) => {
         return acc;
         return acc;
       }, new Map());
       }, new Map());
 
 
-      return sort(Array.from(statMap.entries()).filter(a => a[1] > 9), (a, b) => (b[1] - a[1]));
+      return sort(Array.from(statMap.entries()).filter(a => a[1] > 9), (a, b) => (b[1] - a[1]) || a[0].localeCompare(b[0]));
     });
     });
 
 
   const description = [
   const description = [