From 9462fd751d9ddff126d52be11a99597a6b339c43 Mon Sep 17 00:00:00 2001 From: dangered wolf Date: Sun, 12 Nov 2023 02:33:15 -0500 Subject: [PATCH] More type 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 2f78864..1d55e4f 100644 --- a/src/providers/twitter/conversation.ts +++ b/src/providers/twitter/conversation.ts @@ -417,7 +417,7 @@ export const constructTwitterThread = async ( } const cursorResponse = processResponse( - loadCursor.data.threaded_conversation_with_injections_v2.instructions + loadCursor?.data?.threaded_conversation_with_injections_v2?.instructions ?? [] ); bucket.tweets = bucket.tweets.concat( filterBucketTweets(cursorResponse.tweets, originalTweet) @@ -480,7 +480,7 @@ export const constructTwitterThread = async ( break; } const cursorResponse = processResponse( - loadCursor?.data?.threaded_conversation_with_injections_v2.instructions + loadCursor?.data?.threaded_conversation_with_injections_v2?.instructions ?? [] ); bucket.tweets = cursorResponse.tweets.concat( filterBucketTweets(bucket.tweets, originalTweet)