fix: doesnt hang up on call hangup

This commit is contained in:
Rushil Umaretiya 2023-03-05 03:30:21 -05:00
parent d337240c0b
commit 93420f8184
2 changed files with 5 additions and 2 deletions

View File

@ -39,7 +39,7 @@ model Message {
createdAt DateTime @default(now())
role Role
content String
content String @default("")
session Session @relation(fields: [sessionId], references: [id])
sessionId String @db.ObjectId

View File

@ -36,7 +36,10 @@ export const chat = async (callId) => {
for (let msg of msgs) {
messages.push({
role: convertRole(msg.role),
content: msg.content,
content:
msg.content.length > 0
? msg.content
: "This message was not recorded correctly.",
});
}