From 79431effb25f26b709191f6142131e49efab3120 Mon Sep 17 00:00:00 2001 From: Lan Tian Date: Wed, 28 Oct 2020 00:00:26 +0800 Subject: [PATCH] proxy: fix handling when allowedIP is empty --- proxy/main.go | 1 + 1 file changed, 1 insertion(+) diff --git a/proxy/main.go b/proxy/main.go index 4ae5129..5be408b 100644 --- a/proxy/main.go +++ b/proxy/main.go @@ -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