fix: 4208 - Empty title with special characters
This commit is contained in:
parent
9e634c783f
commit
308a26b9d8
@ -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,
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user