mirror of
https://github.com/CompeyDev/fxtwitter-docker.git
synced 2025-04-05 18:40:56 +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: [],
|
tweets: [],
|
||||||
cursors: []
|
cursors: []
|
||||||
};
|
};
|
||||||
instructions.forEach?.(instruction => {
|
instructions?.forEach?.(instruction => {
|
||||||
if (instruction.type === 'TimelineAddEntries' || instruction.type === 'TimelineAddToModule') {
|
if (instruction.type === 'TimelineAddEntries' || instruction.type === 'TimelineAddToModule') {
|
||||||
// @ts-expect-error Use entries or moduleItems depending on the type
|
// @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
|
const entry = _entry as
|
||||||
| GraphQLTimelineTweetEntry
|
| GraphQLTimelineTweetEntry
|
||||||
| GraphQLConversationThread
|
| GraphQLConversationThread
|
||||||
|
|
Loading…
Add table
Reference in a new issue