From d1910f0e9398659ca5eb927fd1c7f55b7afd168c Mon Sep 17 00:00:00 2001 From: elsapet Date: Tue, 29 Aug 2023 11:31:03 +0200 Subject: [PATCH] fix: privacy formatter --- pkg/report/output/privacy/formatter.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/report/output/privacy/formatter.go b/pkg/report/output/privacy/formatter.go index 71fa6fe8f..f981adaa9 100644 --- a/pkg/report/output/privacy/formatter.go +++ b/pkg/report/output/privacy/formatter.go @@ -42,7 +42,7 @@ func (f Formatter) Format(format string) (output *string, err error) { return output, err } - output, err := html.ReportHTMLWrapper(title, body) + output, err = html.ReportHTMLWrapper(title, body) if err != nil { return output, fmt.Errorf("could not generate html page %s", err) }