Fix signin

This commit is contained in:
Jonathan Staab 2023-03-09 12:36:18 -06:00
parent 35a9274be6
commit 0f9db6c5fb

View File

@ -155,7 +155,7 @@ export const sampleRelays = (relays, scale = 1) => {
}
// Remove relays that are currently in an error state
relays = relays.filter(r => pool.getConnection(r.url)?.hasRecentError())
relays = relays.filter(r => !pool.getConnection(r.url)?.hasRecentError())
// Limit target relays
relays = relays.slice(0, limit)