summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorEmīls Piņķis <emils@mullvad.net>2019-10-08 12:08:48 +0100
committerEmīls Piņķis <emils@mullvad.net>2019-10-08 12:08:48 +0100
commit328796b2f675d6c8ef9ad814cfb4b01aedc5a2d3 (patch)
treea581885ae34876a5dce4b8b30f00be838f7fc760
parent998548aa8b00e933d423eb1c2b1eb3360448c427 (diff)
parent9026c97623df8c2dfe828b4cef5628f2928bf6d2 (diff)
downloadmullvadvpn-328796b2f675d6c8ef9ad814cfb4b01aedc5a2d3.tar.xz
mullvadvpn-328796b2f675d6c8ef9ad814cfb4b01aedc5a2d3.zip
Merge branch 'gui-fix-bridge'
-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);