0
mirror of https://github.com/XTLS/Xray-core.git synced 2025-06-12 11:29:36 +03:00

Allow empty "spiderX" (client side)

This commit is contained in:
RPRX
2023-02-17 21:07:27 +08:00
committed by GitHub
parent e1cd1fd33e
commit c7358a32f5

View File

@ -642,7 +642,7 @@ func (c *REALITYConfig) Build() (proto.Message, error) {
return nil, newError(`invalid "shortId": `, c.ShortId)
}
if c.SpiderX == "" {
return nil, newError(`empty "spiderX"`)
c.SpiderX = "/"
}
if c.SpiderX[0] != '/' {
return nil, newError(`invalid "spiderX": `, c.SpiderX)