diff options
| author | Linus Färnstrand <linus@mullvad.net> | 2019-03-25 11:39:46 +0100 |
|---|---|---|
| committer | Linus Färnstrand <linus@mullvad.net> | 2019-03-26 12:36:31 +0100 |
| commit | cdebe42c76dca2dbda6e9d24e5c14f49dae44e71 (patch) | |
| tree | 69a80ba8bb68102dd7548ff9acb0e1d4cd7f1b19 /gui/src/renderer/components | |
| parent | 4b2841c9dfc75a513f99cd9695fc27977699cc91 (diff) | |
| download | mullvadvpn-cdebe42c76dca2dbda6e9d24e5c14f49dae44e71.tar.xz mullvadvpn-cdebe42c76dca2dbda6e9d24e5c14f49dae44e71.zip | |
Update GUI with new GeoIpLocation struct layout
Diffstat (limited to 'gui/src/renderer/components')
| -rw-r--r-- | gui/src/renderer/components/Connect.tsx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gui/src/renderer/components/Connect.tsx b/gui/src/renderer/components/Connect.tsx index 6d10400a30..dea950b3f1 100644 --- a/gui/src/renderer/components/Connect.tsx +++ b/gui/src/renderer/components/Connect.tsx @@ -151,7 +151,8 @@ export default class Connect extends Component<IProps, IState> { const status = this.props.connection.status; const relayOutAddress: IRelayOutAddress = { - ipv4: this.props.connection.ip, + ipv4: this.props.connection.ipv4, + ipv6: this.props.connection.ipv6, }; const relayInAddress: IRelayInAddress | undefined = (status.state === 'connecting' || status.state === 'connected') && status.details |
