From 3e720ec14d596dcf98e636d90d006eaeeb954cfd Mon Sep 17 00:00:00 2001 From: Nite07 Date: Mon, 6 May 2024 02:08:12 +0800 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9B=20Fix=20vless=20parser=20lost=20fi?= =?UTF-8?q?ngerprint?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- parser/vless.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/parser/vless.go b/parser/vless.go index 6262d08..0bb07fc 100644 --- a/parser/vless.go +++ b/parser/vless.go @@ -105,7 +105,7 @@ func ParseVless(proxy string) (model.Proxy, error) { result.Alpn = alpn result.Sni = sni result.AllowInsecure = insecureBool - result.Fingerprint = fp + result.ClientFingerprint = fp } if security == "reality" { @@ -115,6 +115,7 @@ func ParseVless(proxy string) (model.Proxy, error) { PublicKey: pbk, ShortID: sid, } + result.ClientFingerprint = fp } if _type == "ws" {