Do not try to split ip and port of x-forwarded-for addresses

This commit is contained in:
Gabe Kangas 2020-10-07 20:42:02 -07:00
parent bcf4cb09e7
commit a7d9e2719a

View file

@ -28,7 +28,7 @@ func GetIPAddressFromRequest(req *http.Request) string {
ipAddressString := req.RemoteAddr
xForwardedFor := req.Header.Get("X-FORWARDED-FOR")
if xForwardedFor != "" {
ipAddressString = xForwardedFor
return xForwardedFor
}
ip, _, err := net.SplitHostPort(ipAddressString)