diff options
Diffstat (limited to 'reports.go')
| -rw-r--r-- | reports.go | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -19,7 +19,7 @@ type Reports struct { // Store the service scan report. func (reports *Reports) Store(scanReport ScanReport) { reports.Lock() - var svcReport = reports.Services[scanReport.Name] + var svcReport = reports.Services[scanReport.ID] svcReport.Store(scanReport) if !scanReport.Success { reports.Fail = append(reports.Fail, scanReport) |
