Remove underscore from var
This commit is contained in:
@@ -81,9 +81,9 @@ func (l Negotiator) RoundTrip(req *http.Request) (res *http.Response, err error)
|
|||||||
domain := ""
|
domain := ""
|
||||||
|
|
||||||
if strings.Contains(u, "\\") {
|
if strings.Contains(u, "\\") {
|
||||||
u_components := strings.Split(u, "\\")
|
ucomponents := strings.Split(u, "\\")
|
||||||
domain = u_components[0]
|
domain = ucomponents[0]
|
||||||
u = u_components[1]
|
u = ucomponents[1]
|
||||||
}
|
}
|
||||||
|
|
||||||
// send negotiate
|
// send negotiate
|
||||||
|
Reference in New Issue
Block a user