diff options
| author | Linus Färnstrand <linus@mullvad.net> | 2017-10-16 09:14:20 +0200 |
|---|---|---|
| committer | Linus Färnstrand <linus@mullvad.net> | 2017-10-16 13:24:13 +0200 |
| commit | 811c1dc1fdd099f4e370ada8b884a093774b89a5 (patch) | |
| tree | a3901f7302f969a31f12104edfe5e7e88fac51db | |
| parent | 21ef1e1be95518530ef69572fa14f9b09e33475b (diff) | |
| download | mullvadvpn-811c1dc1fdd099f4e370ada8b884a093774b89a5.tar.xz mullvadvpn-811c1dc1fdd099f4e370ada8b884a093774b89a5.zip | |
Show the real server IP when connected, and none when not.
| -rw-r--r-- | app/components/Connect.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/components/Connect.js b/app/components/Connect.js index 5f5af30955..c49912349d 100644 --- a/app/components/Connect.js +++ b/app/components/Connect.js @@ -113,8 +113,8 @@ export default class Connect extends Component { ? serverInfo : { city: '\u2003', country: '\u2002' }; const ip = isConnected - ? '185.65.132.102' - : '78.65.17.155'; //this.props.connection.clientIp; + ? serverInfo.address + : '\u2003'; //this.props.connection.clientIp; // We decided to not include the map in the first beta release to customers // but it MUST be included in the following releases. Therefore we choose |
