mirror of
https://github.com/CompeyDev/fxtwitter-docker.git
synced 2025-04-05 02:20:54 +01:00
Fix some optional safety
This commit is contained in:
parent
77b7ad5b3d
commit
f7172ba275
1 changed files with 2 additions and 2 deletions
|
@ -162,10 +162,10 @@ const processResponse = (instructions: ThreadInstruction[]): GraphQLProcessBucke
|
|||
tweets: [],
|
||||
cursors: []
|
||||
};
|
||||
instructions.forEach?.(instruction => {
|
||||
instructions?.forEach?.(instruction => {
|
||||
if (instruction.type === 'TimelineAddEntries' || instruction.type === 'TimelineAddToModule') {
|
||||
// @ts-expect-error Use entries or moduleItems depending on the type
|
||||
(instruction?.entries ?? instruction.moduleItems).forEach(_entry => {
|
||||
(instruction?.entries ?? instruction?.moduleItems)?.forEach(_entry => {
|
||||
const entry = _entry as
|
||||
| GraphQLTimelineTweetEntry
|
||||
| GraphQLConversationThread
|
||||
|
|
Loading…
Add table
Reference in a new issue