From f7172ba2752ad0298d812e2c1d2686be98643e1d Mon Sep 17 00:00:00 2001 From: dangered wolf Date: Fri, 17 Nov 2023 18:46:07 -0500 Subject: [PATCH] Fix some optional safety --- src/providers/twitter/conversation.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/providers/twitter/conversation.ts b/src/providers/twitter/conversation.ts index e937227..d2d53f8 100644 --- a/src/providers/twitter/conversation.ts +++ b/src/providers/twitter/conversation.ts @@ -162,10 +162,10 @@ const processResponse = (instructions: ThreadInstruction[]): GraphQLProcessBucke tweets: [], cursors: [] }; - instructions.forEach?.(instruction => { + instructions?.forEach?.(instruction => { if (instruction.type === 'TimelineAddEntries' || instruction.type === 'TimelineAddToModule') { // @ts-expect-error Use entries or moduleItems depending on the type - (instruction?.entries ?? instruction.moduleItems).forEach(_entry => { + (instruction?.entries ?? instruction?.moduleItems)?.forEach(_entry => { const entry = _entry as | GraphQLTimelineTweetEntry | GraphQLConversationThread