mirror of
https://github.com/SukkaW/Surge.git
synced 2026-01-29 01:51:52 +08:00
Fix: stable reject stat
This commit is contained in:
@@ -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 = [
|
||||||
|
|||||||
Reference in New Issue
Block a user