Merge pull request #6 from starifly/extended

fix(xhttp): use download request URL for down leg
This commit is contained in:
Shtorm
2025-11-03 19:13:46 +03:00
committed by GitHub

View File

@@ -138,7 +138,7 @@ func (c *Client) DialContext(ctx context.Context) (net.Conn, error) {
mode := c.options.Mode
sessionIdUuid := uuid.New()
requestURL := c.getRequestURL(sessionIdUuid.String())
requestURL2 := c.getRequestURL(sessionIdUuid.String())
requestURL2 := c.getRequestURL2(sessionIdUuid.String())
httpClient, xmuxClient := c.getHTTPClient()
httpClient2, xmuxClient2 := c.getHTTPClient2()
if xmuxClient != nil {