mirror of
https://github.com/CompeyDev/fxtwitter-docker.git
synced 2025-04-05 18:40:56 +01:00
Fixed more properly
This commit is contained in:
parent
ff541982b1
commit
d27f347bc5
2 changed files with 5 additions and 3 deletions
|
@ -34,7 +34,7 @@ const processMedia = (media: TweetMedia): APIPhoto | APIVideo | null => {
|
|||
const populateTweetProperties = async (
|
||||
tweet: TweetPartial,
|
||||
conversation: TimelineBlobPartial,
|
||||
language: string
|
||||
language: string | undefined
|
||||
): Promise<APITweet> => {
|
||||
let apiTweet = {} as APITweet;
|
||||
|
||||
|
@ -116,6 +116,8 @@ const populateTweetProperties = async (
|
|||
}
|
||||
}
|
||||
|
||||
console.log('language', language);
|
||||
|
||||
/* If a language is specified, let's try translating it! */
|
||||
if (typeof language === 'string' && language.length === 2 && language !== tweet.lang) {
|
||||
let translateAPI = await translateTweet(
|
||||
|
@ -138,7 +140,7 @@ const populateTweetProperties = async (
|
|||
export const statusAPI = async (
|
||||
event: FetchEvent,
|
||||
status: string,
|
||||
language: string
|
||||
language: string | undefined
|
||||
): Promise<APIResponse> => {
|
||||
const conversation = await fetchUsingGuest(status, event);
|
||||
const tweet = conversation?.globalObjects?.tweets?.[status] || {};
|
||||
|
|
|
@ -27,7 +27,7 @@ export const handleStatus = async (
|
|||
): Promise<StatusResponse> => {
|
||||
console.log('Direct?', flags?.direct);
|
||||
|
||||
let api = await statusAPI(event, status, language || 'en');
|
||||
let api = await statusAPI(event, status, language);
|
||||
const tweet = api?.tweet as APITweet;
|
||||
|
||||
if (flags?.api) {
|
||||
|
|
Loading…
Add table
Reference in a new issue