diff --git a/src/providers/twitter/conversation.ts b/src/providers/twitter/conversation.ts index 9abf022..2f78864 100644 --- a/src/providers/twitter/conversation.ts +++ b/src/providers/twitter/conversation.ts @@ -306,7 +306,7 @@ export const constructTwitterThread = async ( ) { console.log('tweet is private'); return { post: null, thread: null, author: null, code: 401 }; - } else if (!response.data) { + } else if (!response?.data) { return { post: null, thread: null, author: null, code: 404 }; } }