send help

This commit is contained in:
2023-06-01 09:54:25 +01:00
parent 86ec7f41d7
commit 25e7f68dce
32 changed files with 690 additions and 501 deletions

View File

@ -170,10 +170,10 @@ const GlobalTab = () => {
useEffect(() => {
return debounce(500, () => {
const ret: RelayOption[] = [];
System.Sockets.forEach((v, k) => {
System.Sockets.forEach(v => {
ret.push({
url: k,
paid: v.Info?.limitation?.payment_required ?? false,
url: v.address,
paid: v.info?.limitation?.payment_required ?? false,
});
});
ret.sort(a => (a.paid ? -1 : 1));