From 1a684a9c884f913be21f7420608b6a5588229304 Mon Sep 17 00:00:00 2001 From: Joona Hoikkala Date: Wed, 7 Dec 2022 23:02:53 +0200 Subject: [PATCH] Fix the ac for good now (#615) --- pkg/ffuf/autocalibration.go | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/pkg/ffuf/autocalibration.go b/pkg/ffuf/autocalibration.go index 3154151..e9a5aeb 100644 --- a/pkg/ffuf/autocalibration.go +++ b/pkg/ffuf/autocalibration.go @@ -102,11 +102,8 @@ func (j *Job) Calibrate(input map[string][]byte) error { continue } responses = append(responses, resp) - err = j.calibrateFilters(responses, false) - if err != nil { - j.Output.Error(fmt.Sprintf("%s", err)) - } } + _ = j.calibrateFilters(responses, false) } j.Config.MatcherManager.SetCalibrated(true) return nil