mirror of
https://github.com/CompeyDev/fxtwitter-docker.git
synced 2025-04-05 18:40:56 +01:00
Use optionals here for safety
This commit is contained in:
parent
5f497dfef8
commit
d26f090bdd
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||||
|
|
Loading…
Add table
Reference in a new issue