summaryrefslogtreecommitdiffhomepage
path: root/gui/src/main
diff options
context:
space:
mode:
authorEmīls <emils@mullvad.net>2022-01-14 15:33:29 +0000
committerEmīls <emils@mullvad.net>2022-01-14 15:33:29 +0000
commit1e9f7fcaa1a489b88e49faadf7ee4a3233426045 (patch)
treea49c6d32ac3bf56cd1332a34f74388607d8dce8e /gui/src/main
parentc0396210ad8bd9e6e51c4b36975fa7a9de3270ff (diff)
parentf46e257b5a0de0b530016672773ecda5d08de9df (diff)
downloadmullvadvpn-1e9f7fcaa1a489b88e49faadf7ee4a3233426045.tar.xz
mullvadvpn-1e9f7fcaa1a489b88e49faadf7ee4a3233426045.zip
Merge branch 'simplify-custom-resolver'
Diffstat (limited to 'gui/src/main')
-rw-r--r--gui/src/main/daemon-rpc.ts4
1 files changed, 0 insertions, 4 deletions
diff --git a/gui/src/main/daemon-rpc.ts b/gui/src/main/daemon-rpc.ts
index c8cad6fa6a..ac677f4ded 100644
--- a/gui/src/main/daemon-rpc.ts
+++ b/gui/src/main/daemon-rpc.ts
@@ -831,10 +831,6 @@ function convertFromTunnelStateErrorCause(
}
case grpcTypes.ErrorState.Cause.SPLIT_TUNNEL_ERROR:
return { reason: 'split_tunnel_error' };
- case grpcTypes.ErrorState.Cause.FILTERING_RESOLVER_ERROR:
- return { reason: 'filtering_resolver_error' };
- case grpcTypes.ErrorState.Cause.READ_SYSTEM_DNS_CONFIG:
- return { reason: 'read_system_dns_config' };
case grpcTypes.ErrorState.Cause.VPN_PERMISSION_DENIED:
// VPN_PERMISSION_DENIED is only ever created on Android
throw invalidErrorStateCause;