Skip to content

Commit a2b13b5

Browse files
authored
Fixed bug - missed call of decodeVlessServerConfig function in parseDown function
1 parent 38293cf commit a2b13b5

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

xrkeyparser.go

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -544,7 +544,10 @@ func parseDown(link Link, body string) {
544544
decodeSsServerConfig(str)
545545
break
546546
}
547-
// if mask == "vless://"
547+
if mask == "vless://" {
548+
decodeVlessServerConfig(str)
549+
break
550+
}
548551
}
549552
c++
550553
}

0 commit comments

Comments
 (0)