Return in case of not matching poison

This commit is contained in:
WeebDataHoarder
2025-04-13 20:39:47 +02:00
parent 3d4a0af16f
commit 39fbcf92d2

View File

@@ -323,10 +323,10 @@ func (state *State) handleRequest(w http.ResponseWriter, r *http.Request) {
if r != nil {
_, _ = io.Copy(w, reader)
}
return
} else {
http.Error(w, http.StatusText(http.StatusForbidden), http.StatusForbidden)
}
return
}
}
}