mirror of
https://github.com/SukkaW/Surge.git
synced 2025-12-12 09:10:35 +08:00
Fix: stable reject stat
This commit is contained in:
parent
748861bd2b
commit
6308ce2536
@ -156,7 +156,7 @@ export const buildRejectDomainSet = task(import.meta.path, async (span) => {
|
||||
return acc;
|
||||
}, 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 = [
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user