mirror of
https://github.com/CompeyDev/fxtwitter-docker.git
synced 2025-04-06 02:50:54 +01:00
Fix missing optional
This commit is contained in:
parent
0c2fe9d58b
commit
b951a20a64
1 changed files with 1 additions and 1 deletions
|
@ -306,7 +306,7 @@ export const constructTwitterThread = async (
|
||||||
) {
|
) {
|
||||||
console.log('tweet is private');
|
console.log('tweet is private');
|
||||||
return { post: null, thread: null, author: null, code: 401 };
|
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 };
|
return { post: null, thread: null, author: null, code: 404 };
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue