From b6e9f9c11f9785ba94a589e9cc884a2d2e9f7bf8 Mon Sep 17 00:00:00 2001 From: svatantrya Date: Sun, 5 Jul 2026 21:29:26 -0400 Subject: [PATCH] sort by balance desc, base_fee asc, points desc; update terms description --- index.html | 2 +- terms.html | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/index.html b/index.html index 6004298..4d20a04 100644 --- a/index.html +++ b/index.html @@ -371,7 +371,7 @@ function getFiltered() { return allServers .filter(d => withTor ? true : !d.onion) .filter(d => (d.url + " " + (d.info||"")).toLowerCase().includes(q.toLowerCase())) - .sort((a, b) => (b.balance||0) - (a.balance||0) || (b.base_fee||0) - (a.base_fee||0)); + .sort((a, b) => (b.balance||0) - (a.balance||0) || (a.base_fee||0) - (b.base_fee||0) || (b.points||0) - (a.points||0)); } function render() { diff --git a/terms.html b/terms.html index 53c5e33..69f53f1 100644 --- a/terms.html +++ b/terms.html @@ -116,7 +116,7 @@ footer a{color:var(--accent);text-decoration:none}

2. Ranking

-

Servers are sorted by descending balance, then by descending base fee for ties. Points are a separate metric earned through WeTime participation.

+

Servers are sorted by descending balance, then by ascending base fee for ties, then by descending points.

01