Use optionals here for safety

This commit is contained in:
dangered wolf 2023-11-04 03:24:46 -04:00
parent 5f497dfef8
commit d26f090bdd
No known key found for this signature in database
GPG key ID: 41E4D37680ED8B58

View file

@ -62,7 +62,7 @@ export const fetchTweetDetail = async (
const conversation = _conversation as TweetDetailResult; const conversation = _conversation as TweetDetailResult;
const tweet = findTweetInBucket( const tweet = findTweetInBucket(
status, status,
processResponse(conversation.data.threaded_conversation_with_injections_v2.instructions) processResponse(conversation.data?.threaded_conversation_with_injections_v2?.instructions)
); );
if (tweet && isGraphQLTweet(tweet)) { if (tweet && isGraphQLTweet(tweet)) {
return true; return true;