diff options
| author | Oskar <oskar@mullvad.net> | 2024-08-30 10:46:43 +0200 |
|---|---|---|
| committer | Oskar <oskar@mullvad.net> | 2024-08-30 20:04:00 +0200 |
| commit | 93dd4c574ca0f7bae46b9ab8a259e465ab856069 (patch) | |
| tree | 4da22da638555f86a666d7007302b99c8b8260a6 /gui/src/shared | |
| parent | 059dafffdfd6d8c7825da4f8d518e3c82b943abf (diff) | |
| download | mullvadvpn-93dd4c574ca0f7bae46b9ab8a259e465ab856069.tar.xz mullvadvpn-93dd4c574ca0f7bae46b9ab8a259e465ab856069.zip | |
Fix missing daemon event obfuscation type convertion
Diffstat (limited to 'gui/src/shared')
| -rw-r--r-- | gui/src/shared/daemon-rpc-types.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gui/src/shared/daemon-rpc-types.ts b/gui/src/shared/daemon-rpc-types.ts index 40c692e1ba..b84ee8a72e 100644 --- a/gui/src/shared/daemon-rpc-types.ts +++ b/gui/src/shared/daemon-rpc-types.ts @@ -112,7 +112,7 @@ export function tunnelTypeToString(tunnel: TunnelType): string { } export type RelayProtocol = 'tcp' | 'udp'; -export type EndpointObfuscationType = 'udp2tcp'; +export type EndpointObfuscationType = 'udp2tcp' | 'shadowsocks'; export type Constraint<T> = 'any' | { only: T }; export type LiftedConstraint<T> = 'any' | T; |
