summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--internal/server/server.go1
1 files changed, 0 insertions, 1 deletions
diff --git a/internal/server/server.go b/internal/server/server.go
index abe5178..d622aef 100644
--- a/internal/server/server.go
+++ b/internal/server/server.go
@@ -126,7 +126,6 @@ func (s *Server) connect(ctx context.Context, wgSupport bool, pTCP bool) (*srvty
}
// If the client supports WireGuard and the profile supports both protocols we remove openvpn from client support if EDUVPN_PREFER_WG is set to "1"
// This also only happens if prefer TCP is set to false
- // TODO: remove the prefer TCP check when we have implemented proxyguard
if wgSupport && os.Getenv("EDUVPN_PREFER_WG") == "1" {
if chosenP.HasWireGuard() && chosenP.HasOpenVPN() {
protos = []protocol.Protocol{protocol.WireGuard}