diff options
| author | Emīls Piņķis <emils@mullvad.net> | 2019-03-06 18:51:22 +0000 |
|---|---|---|
| committer | Emīls Piņķis <emils@mullvad.net> | 2019-03-07 11:26:29 +0000 |
| commit | ee945c99ca0a2ff42efd8e36443d8e93caaece58 (patch) | |
| tree | 5815e6e1702cfe7315659752e9fa8652687b7494 /gui/src/main | |
| parent | 418760ab66d2b6d9d1ccae0acd70df84b4390591 (diff) | |
| download | mullvadvpn-ee945c99ca0a2ff42efd8e36443d8e93caaece58.tar.xz mullvadvpn-ee945c99ca0a2ff42efd8e36443d8e93caaece58.zip | |
Fix custom relay settings schema in daemon-rpc.ts
Diffstat (limited to 'gui/src/main')
| -rw-r--r-- | gui/src/main/daemon-rpc.ts | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gui/src/main/daemon-rpc.ts b/gui/src/main/daemon-rpc.ts index 5351b81946..73c23b7158 100644 --- a/gui/src/main/daemon-rpc.ts +++ b/gui/src/main/daemon-rpc.ts @@ -72,7 +72,8 @@ const customTunnelEndpointSchema = oneOf( allowed_ips: arrayOf(string), endpoint: string, }), - gateway: string, + ipv4_gateway: string, + ipv6_gateway: maybe(string), }), }), ); |
