Fix 404 statuses causing unexpected results

This commit is contained in:
dangered wolf 2023-11-04 03:23:15 -04:00
parent 7b97dea61b
commit 5f497dfef8
No known key found for this signature in database
GPG key ID: 41E4D37680ED8B58

View file

@ -322,9 +322,9 @@ export const constructTwitterThread = async (
const buildPost = await buildAPITweet(result, language, false, legacyAPI);
if ((buildPost as FetchResults).status === 401) {
if ((buildPost as FetchResults)?.status === 401) {
return { post: null, thread: null, author: null, code: 401 };
} else if (buildPost === null) {
} else if (buildPost === null || (buildPost as FetchResults)?.status === 404) {
return { post: null, thread: null, author: null, code: 404 };
}