mirror of
https://github.com/MetaCubeX/Clash.Meta.git
synced 2025-04-05 06:03:34 +03:00
chore: add leading slash to ws-path
This commit is contained in:
parent
f29329fe80
commit
f16ebf9bfe
1 changed files with 4 additions and 0 deletions
|
@ -338,6 +338,10 @@ func streamWebsocketConn(ctx context.Context, conn net.Conn, c *WebsocketConfig,
|
|||
RawQuery: u.RawQuery,
|
||||
}
|
||||
|
||||
if !strings.HasPrefix(uri.Path, "/") {
|
||||
uri.Path = "/" + uri.Path
|
||||
}
|
||||
|
||||
if c.TLS {
|
||||
uri.Scheme = "wss"
|
||||
config := c.TLSConfig
|
||||
|
|
Loading…
Add table
Reference in a new issue