diff options
| author | Emīls Piņķis <emils@mullvad.net> | 2019-10-08 11:31:38 +0100 |
|---|---|---|
| committer | Emīls Piņķis <emils@mullvad.net> | 2019-10-08 11:37:01 +0100 |
| commit | 9026c97623df8c2dfe828b4cef5628f2928bf6d2 (patch) | |
| tree | a581885ae34876a5dce4b8b30f00be838f7fc760 /gui/src | |
| parent | 998548aa8b00e933d423eb1c2b1eb3360448c427 (diff) | |
| download | mullvadvpn-9026c97623df8c2dfe828b4cef5628f2928bf6d2.tar.xz mullvadvpn-9026c97623df8c2dfe828b4cef5628f2928bf6d2.zip | |
Use bridge list to display bridges, not relays
Diffstat (limited to 'gui/src')
| -rw-r--r-- | gui/src/renderer/app.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gui/src/renderer/app.tsx b/gui/src/renderer/app.tsx index 98ffbc3157..70c8fc2484 100644 --- a/gui/src/renderer/app.tsx +++ b/gui/src/renderer/app.tsx @@ -674,7 +674,7 @@ export default class AppRenderer { private propagateRelayListPairToRedux() { const relays = this.convertRelayListToLocationList(this.relayListPair.relays); - const bridges = this.convertRelayListToLocationList(this.relayListPair.relays); + const bridges = this.convertRelayListToLocationList(this.relayListPair.bridges); this.reduxActions.settings.updateRelayLocations(relays); this.reduxActions.settings.updateBridgeLocations(bridges); |
