Commit 9997acc4 authored by leitao.zhang's avatar leitao.zhang

修正拼接问题

parent 7de5c8b5
...@@ -165,7 +165,7 @@ func Proxy(c *gin.Context) { ...@@ -165,7 +165,7 @@ func Proxy(c *gin.Context) {
reqURL.RawQuery = c.Request.URL.RawQuery reqURL.RawQuery = c.Request.URL.RawQuery
} else { } else {
if c.Request.URL.RawQuery != "" { if c.Request.URL.RawQuery != "" {
reqURL.RawQuery = "&" + c.Request.URL.RawQuery reqURL.RawQuery += "&" + c.Request.URL.RawQuery
} }
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment