From e74259ef55b78300b474fd4dacb7fd68f91a8255 Mon Sep 17 00:00:00 2001 From: svatantrya Date: Sun, 5 Jul 2026 19:20:03 -0400 Subject: [PATCH] sort by balance then base_fee instead of points --- index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.html b/index.html index 712b8bc..7e811ac 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.points||0) - (a.points||0)); + .sort((a, b) => (b.balance||0) - (a.balance||0) || (b.base_fee||0) - (a.base_fee||0)); } function render() {