diff options
author | Stephen Buttolph <[email protected]> | 2020-06-07 21:27:09 +0000 |
---|---|---|
committer | Stephen Buttolph <[email protected]> | 2020-06-07 21:27:09 +0000 |
commit | 298d08dbf8b74a32f7bb74e25cc5bf729c35a6da (patch) | |
tree | 241926e99f3c9ad0c5c7a1b8d2c02517ecc3bdc6 /plugin/evm/vm.go | |
parent | ab977c426fe8021275fc1c7fd6cdb80d42191886 (diff) |
fix minor typo
Diffstat (limited to 'plugin/evm/vm.go')
-rw-r--r-- | plugin/evm/vm.go | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/plugin/evm/vm.go b/plugin/evm/vm.go index 57b2eda..929725d 100644 --- a/plugin/evm/vm.go +++ b/plugin/evm/vm.go @@ -334,11 +334,12 @@ type ipFilter struct { } func (ipf ipFilter) ServeHTTP(writer http.ResponseWriter, request *http.Request) { - if ips, _, err := net.SplitHostPort(request.RemoteAddr); err != nil && ips == "127.0.0.1" { + if ips, _, err := net.SplitHostPort(request.RemoteAddr); err == nil && ips == "127.0.0.1" { ipf.handler.ServeHTTP(writer, request) return } writer.WriteHeader(404) + writer.Write([]byte("404 page not found")) } func newIPFilter(handler http.Handler) http.Handler { |