diff options
Diffstat (limited to 'gui/src')
| -rw-r--r-- | gui/src/main/index.ts | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/gui/src/main/index.ts b/gui/src/main/index.ts index c8e028531f..4cab78b524 100644 --- a/gui/src/main/index.ts +++ b/gui/src/main/index.ts @@ -750,7 +750,9 @@ class ApplicationMain { cities: country.cities .map((city) => ({ ...city, - relays: city.relays.filter((relay) => relay.bridges), + relays: city.relays.filter( + (relay) => relay.bridges && relay.bridges.shadowsocks.length > 0, + ), })) .filter((city) => city.relays.length > 0), })) |
