Skip to content

Commit 44bfe64

Browse files
committed
Defensive check for attachedCardEventIds for backwards compat.
1 parent 3ad64b3 commit 44bfe64

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/ai-bot/helpers.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -193,7 +193,7 @@ export function constructHistory(
193193
continue;
194194
}
195195
if (event.content.msgtype === APP_BOXEL_MESSAGE_MSGTYPE) {
196-
let { attachedCardsEventIds } = event.content.data;
196+
let { attachedCardsEventIds } = event.content.data ?? {};
197197
if (attachedCardsEventIds && attachedCardsEventIds.length > 0) {
198198
event.content.data.attachedCards = attachedCardsEventIds.map(
199199
(id: string) => serializedCardFromFragments(id, cardFragments),

0 commit comments

Comments
 (0)