Skip to content

Commit

Permalink
fix(openvpn): solved wrong mode when editing client tunnel (#357)
Browse files Browse the repository at this point in the history
  • Loading branch information
Tbaile authored Sep 10, 2024
1 parent 85b750d commit 6ec1700
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -539,7 +539,7 @@ async function createOrEditTunnel() {
: {})
}
: {}),
dev_type: mode.value == 'bridged' ? 'tun' : 'tap',
dev_type: mode.value == 'bridged' ? 'tap' : 'tun',
remote: remoteHosts.value,
route: remoteNetworks.value.filter(Boolean)
}
Expand Down

0 comments on commit 6ec1700

Please sign in to comment.