*If we have no active gateways, try to refresh the list first

This commit is contained in:
Derrick Hammer 2022-08-14 06:19:13 -04:00
parent b70c77eeda
commit 564306bed2
Signed by: pcfreak30
GPG Key ID: C997C339BE476FF2
1 changed files with 6 additions and 3 deletions

View File

@ -137,6 +137,9 @@ async function fetchFromRelays(
stream = undefined stream = undefined
) { ) {
let error = new Error("NOT_FOUND"); let error = new Error("NOT_FOUND");
if (0 == activeRelays.length) {
await refreshGatewayList();
}
for (const relay of activeRelays) { for (const relay of activeRelays) {
let resp; let resp;
try { try {