Browse Source

Allow empty "spiderX" (client side)

RPRX 2 years ago
parent
commit
c7358a32f5
1 changed files with 1 additions and 1 deletions
  1. 1 1
      infra/conf/transport_internet.go

+ 1 - 1
infra/conf/transport_internet.go

@@ -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)