From b8dba7cfd4e0898a5ced9551090b7b10667895e9 Mon Sep 17 00:00:00 2001 From: Hadi <112569860+anotherhadi@users.noreply.github.com> Date: Mon, 3 Nov 2025 13:29:01 +0100 Subject: [PATCH] add _column detection Signed-off-by: Hadi <112569860+anotherhadi@users.noreply.github.com> --- leak-utils/misc/csv.go | 3 +++ 1 file changed, 3 insertions(+) diff --git a/leak-utils/misc/csv.go b/leak-utils/misc/csv.go index ebc861e..0d39eaa 100644 --- a/leak-utils/misc/csv.go +++ b/leak-utils/misc/csv.go @@ -100,6 +100,9 @@ func csvHasHeader(inputFile, delimiter string) (hasHeader bool, err error) { if slices.Contains(firstRow, knownHeader) { return true, nil } + if slices.Contains(firstRow, "_"+knownHeader) { + return true, nil + } } return false, nil }