fix: 4208 - Empty title with special characters

This commit is contained in:
Louis 2024-12-04 11:39:17 +07:00
parent 9e634c783f
commit 308a26b9d8
No known key found for this signature in database
GPG Key ID: 44FA9F4D33C37DE2

View File

@ -134,7 +134,7 @@ export default function ModelHandler() {
// Remove non-alphanumeric characters
const cleanedMessageContent = messageContent
.replace(/[^a-z0-9\s]/gi, '')
.replace(/[^\p{L}\s]+/gu, '')
.trim()
// Split the message into words
@ -147,6 +147,9 @@ export default function ModelHandler() {
return
}
// Do not persist empty message
if (!cleanedMessageContent.trim().length) return
const updatedThread: Thread = {
...thread,