fix possible nil panic (#2809)

This commit is contained in:
kim 2024-04-04 16:45:59 +01:00 committed by GitHub
parent 236604bd6b
commit 83e7847cdf
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -121,7 +121,7 @@ func isUTF8ContentType(p []string) ([]string, bool) {
for i, part := range p {
// Only handle charset slice parts.
if part[:len(charset)] == charset {
if strings.HasPrefix(part, charset) {
// Check if is UTF-8 charset.
ok := (part == charsetUTF8)