Fix parsing query in http path

This commit is contained in:
世界 2023-04-12 15:14:55 +08:00
parent b54da9c6af
commit 34cc7f176e
No known key found for this signature in database
GPG key ID: CD109927C34A63C4
4 changed files with 19 additions and 16 deletions

View file

@ -46,7 +46,7 @@ func NewClientTransport(ctx context.Context, dialer N.Dialer, serverAddr M.Socks
}
switch options.Type {
case C.V2RayTransportTypeHTTP:
return v2rayhttp.NewClient(ctx, dialer, serverAddr, options.HTTPOptions, tlsConfig), nil
return v2rayhttp.NewClient(ctx, dialer, serverAddr, options.HTTPOptions, tlsConfig)
case C.V2RayTransportTypeGRPC:
if tlsConfig == nil {
return nil, C.ErrTLSRequired