diff --git a/internal/utils/decoders/header_decoder.go b/internal/utils/decoders/header_decoder.go index a2d36a2..834b845 100644 --- a/internal/utils/decoders/header_decoder.go +++ b/internal/utils/decoders/header_decoder.go @@ -107,7 +107,7 @@ func sortKeys(headers map[string]string, filters []string) []string { } for _, filter := range filters { - if strings.HasPrefix(key, filter+"-") { + if strings.HasPrefix(strings.ToLower(key), strings.ToLower(filter)) { sortedKeys = append(sortedKeys, key) continue }