More type safety

This commit is contained in:
dangered wolf 2023-11-12 02:33:15 -05:00
parent b951a20a64
commit 9462fd751d
No known key found for this signature in database
GPG key ID: 41E4D37680ED8B58

View file

@ -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)