summaryrefslogtreecommitdiffhomepage
path: root/gui/src
diff options
context:
space:
mode:
authorEmīls Piņķis <emils@mullvad.net>2019-10-08 11:31:38 +0100
committerEmīls Piņķis <emils@mullvad.net>2019-10-08 11:37:01 +0100
commit9026c97623df8c2dfe828b4cef5628f2928bf6d2 (patch)
treea581885ae34876a5dce4b8b30f00be838f7fc760 /gui/src
parent998548aa8b00e933d423eb1c2b1eb3360448c427 (diff)
downloadmullvadvpn-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.tsx2
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);