Fix missing optional

This commit is contained in:
dangered wolf 2023-11-12 02:13:43 -05:00
parent 0c2fe9d58b
commit b951a20a64
No known key found for this signature in database
GPG key ID: 41E4D37680ED8B58

View file

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