mirror of
https://github.com/CompeyDev/fxtwitter-docker.git
synced 2025-04-05 02:20:54 +01:00
More type safety
This commit is contained in:
parent
b951a20a64
commit
9462fd751d
1 changed files with 2 additions and 2 deletions
|
@ -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)
|
||||
|
|
Loading…
Add table
Reference in a new issue