Fix some optional safety

This commit is contained in:
dangered wolf 2023-11-17 18:46:07 -05:00
parent 77b7ad5b3d
commit f7172ba275
No known key found for this signature in database
GPG key ID: 41E4D37680ED8B58

View file

@ -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