remove checkpool fuzzy output

This commit is contained in:
M09Ic 2024-07-14 03:19:08 +08:00
parent eb328a4b52
commit fab69d977a

View File

@ -154,10 +154,10 @@ func (pool *CheckPool) Handler() {
if bl.IsValid { if bl.IsValid {
if bl.RedirectURL != "" { if bl.RedirectURL != "" {
pool.doRedirect(bl, bl.ReqDepth) pool.doRedirect(bl, bl.ReqDepth)
pool.putToFuzzy(bl) pool.putToOutput(bl)
} else if bl.Status == 400 { } else if bl.Status == 400 {
pool.doUpgrade(bl) pool.doUpgrade(bl)
pool.putToFuzzy(bl) pool.putToOutput(bl)
} else { } else {
params := map[string]interface{}{ params := map[string]interface{}{
"current": bl, "current": bl,