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/shared | |
| parent | 4b2841c9dfc75a513f99cd9695fc27977699cc91 (diff) | |
| download | mullvadvpn-cdebe42c76dca2dbda6e9d24e5c14f49dae44e71.tar.xz mullvadvpn-cdebe42c76dca2dbda6e9d24e5c14f49dae44e71.zip | |
Update GUI with new GeoIpLocation struct layout
Diffstat (limited to 'gui/src/shared')
| -rw-r--r-- | gui/src/shared/daemon-rpc-types.ts | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gui/src/shared/daemon-rpc-types.ts b/gui/src/shared/daemon-rpc-types.ts index 4582a66549..7908c4f67e 100644 --- a/gui/src/shared/daemon-rpc-types.ts +++ b/gui/src/shared/daemon-rpc-types.ts @@ -4,7 +4,8 @@ export interface IAccountData { export type AccountToken = string; export type Ip = string; export interface ILocation { - ip?: string; + ipv4?: string; + ipv6?: string; country: string; city?: string; latitude: number; |
