🐛 Fix truncate content panic
This commit is contained in:
parent
6c25f14189
commit
1e16e5c343
@ -475,12 +475,14 @@ const TruncatePostContentThreshold = 160
|
||||
|
||||
func TruncatePostContent(post models.Post) models.Post {
|
||||
if post.Body["content"] != nil {
|
||||
if val, ok := post.Body["content"].(string); ok && len(val) >= TruncatePostContentThreshold {
|
||||
if val, ok := post.Body["content"].(string); ok {
|
||||
length := TruncatePostContentThreshold
|
||||
if len([]rune(val)) >= length {
|
||||
post.Body["content"] = string([]rune(val)[:length]) + "..."
|
||||
post.Body["content_truncated"] = true
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
return post
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user