mirror of
https://github.com/superseriousbusiness/gotosocial
synced 2025-04-25 07:28:49 +02:00
fix possible nil panic (#2809)
This commit is contained in:
parent
236604bd6b
commit
83e7847cdf
@ -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)
|
||||
|
Loading…
x
Reference in New Issue
Block a user