proxy: fix handling when allowedIP is empty

This commit is contained in:
Lan Tian 2020-10-28 00:00:26 +08:00
parent cdfb18e87a
commit 79431effb2
No known key found for this signature in database
GPG Key ID: 3D2E9DC81E5791C7

View File

@ -27,6 +27,7 @@ func accessHandler(next http.Handler) http.Handler {
// setting.allowedIPs will always have at least one element because of how it's defined
if setting.allowedIPs[0] == "" {
next.ServeHTTP(httpW, httpR)
return
}
IPPort := httpR.RemoteAddr