🍱 fix lint

This commit is contained in:
maxlerebourg
2025-11-07 00:27:31 +01:00
parent 18011fabe6
commit 06a88c89ac

View File

@@ -331,7 +331,7 @@ func (bouncer *Bouncer) ServeHTTP(rw http.ResponseWriter, req *http.Request) {
bouncer.log.Debug(fmt.Sprintf("ServeHTTP ip:%s cache:hit isBanned:%v", remoteIP, value))
if value == cache.NoBannedValue {
handleNextServeHTTP(bouncer, remoteIP, rw, req)
} else {
} else {
handleRemediationServeHTTP(bouncer, remoteIP, value, rw, req)
}
return