Skip to content

Commit f73964f

Browse files
committed
Fix AnyTLS config generation error
1 parent 6788bf9 commit f73964f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/parser/subparser.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1829,7 +1829,7 @@ void explodeStdAnyTLS(std::string anytls, Proxy &node) {
18291829
// 其他参数
18301830
sni = getUrlArg(addition, "peer");
18311831
alpn = getUrlArg(addition, "alpn");
1832-
fingerprint = getUrlArg(addition, "hpkp");
1832+
fingerprint = urlDecode(getUrlArg(addition, "hpkp"));
18331833
tfo = tribool(getUrlArg(addition, "tfo"));
18341834
scv = tribool(getUrlArg(addition, "insecure"));
18351835

0 commit comments

Comments
 (0)