summaryrefslogtreecommitdiffhomepage
path: root/gui/src
diff options
context:
space:
mode:
Diffstat (limited to 'gui/src')
-rw-r--r--gui/src/main/daemon-rpc.ts2
1 files changed, 2 insertions, 0 deletions
diff --git a/gui/src/main/daemon-rpc.ts b/gui/src/main/daemon-rpc.ts
index 8ed75b8885..c740393e2a 100644
--- a/gui/src/main/daemon-rpc.ts
+++ b/gui/src/main/daemon-rpc.ts
@@ -801,6 +801,8 @@ function convertFromTunnelStateErrorCause(
};
return { reason: 'tunnel_parameter_error', details: parameterErrorMap[state.parameterError] };
}
+ case grpcTypes.ErrorState.Cause.SPLIT_TUNNEL_ERROR:
+ return { reason: 'start_tunnel_error' };
case grpcTypes.ErrorState.Cause.VPN_PERMISSION_DENIED:
// VPN_PERMISSION_DENIED is only ever created on Android
throw invalidErrorStateCause;