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