mirror of
https://github.com/MetaCubeX/Clash.Meta.git
synced 2025-04-04 05:33:35 +03:00
fix: reality not work with vmess+grpc outbound
This commit is contained in:
parent
3b40bf76b7
commit
1213023f11
1 changed files with 5 additions and 5 deletions
|
@ -459,6 +459,11 @@ func NewVmess(option VmessOption) (*Vmess, error) {
|
|||
option: &option,
|
||||
}
|
||||
|
||||
v.realityConfig, err = v.option.RealityOpts.Parse()
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
|
||||
switch option.Network {
|
||||
case "h2":
|
||||
if len(option.HTTP2Opts.Host) == 0 {
|
||||
|
@ -507,11 +512,6 @@ func NewVmess(option VmessOption) (*Vmess, error) {
|
|||
v.transport = gun.NewHTTP2Client(dialFn, tlsConfig, v.option.ClientFingerprint, v.realityConfig)
|
||||
}
|
||||
|
||||
v.realityConfig, err = v.option.RealityOpts.Parse()
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
|
||||
return v, nil
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue