Skip to content

Commit b5e33dd

Browse files
committed
fix(kb): skip outlook messages without conversationId to prevent broken stubs
1 parent 03a2756 commit b5e33dd

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

apps/sim/connectors/outlook/outlook.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -407,7 +407,8 @@ export const outlookConnector: ConnectorConfig = {
407407
continue
408408
}
409409

410-
const convId = msg.conversationId || msg.id
410+
if (!msg.conversationId) continue
411+
const convId = msg.conversationId
411412
if (!conversations[convId]) {
412413
conversations[convId] = []
413414
}

0 commit comments

Comments
 (0)