mirror of
https://github.com/CompeyDev/fxtwitter-docker.git
synced 2025-04-05 18:40:56 +01:00
Fix 404 statuses causing unexpected results
This commit is contained in:
parent
7b97dea61b
commit
5f497dfef8
1 changed files with 2 additions and 2 deletions
|
@ -322,9 +322,9 @@ export const constructTwitterThread = async (
|
||||||
|
|
||||||
const buildPost = await buildAPITweet(result, language, false, legacyAPI);
|
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 };
|
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 };
|
return { post: null, thread: null, author: null, code: 404 };
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue