Fix: stable reject stat

This commit is contained in:
SukkaW
2024-05-11 00:39:51 +08:00
parent 748861bd2b
commit 6308ce2536

View File

@@ -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 = [