mirror of
https://github.com/CompeyDev/fxtwitter-docker.git
synced 2025-04-05 18:40:56 +01:00
Fix #16
This commit is contained in:
parent
366fa95238
commit
beca5f30e7
3 changed files with 6 additions and 6 deletions
|
@ -129,7 +129,7 @@ const populateTweetProperties = async (
|
||||||
);
|
);
|
||||||
if (translateAPI !== null && translateAPI?.translation) {
|
if (translateAPI !== null && translateAPI?.translation) {
|
||||||
apiTweet.translation = {
|
apiTweet.translation = {
|
||||||
text: translateAPI?.translation || '',
|
text: linkFixer(tweet, translateAPI?.translation || ''),
|
||||||
source_lang: translateAPI?.sourceLanguage || '',
|
source_lang: translateAPI?.sourceLanguage || '',
|
||||||
target_lang: translateAPI?.destinationLanguage || ''
|
target_lang: translateAPI?.destinationLanguage || ''
|
||||||
};
|
};
|
||||||
|
|
|
@ -217,14 +217,14 @@ const cacheWrapper = async (event: FetchEvent): Promise<Response> => {
|
||||||
/*
|
/*
|
||||||
Event to receive web requests on Cloudflare Worker
|
Event to receive web requests on Cloudflare Worker
|
||||||
*/
|
*/
|
||||||
addEventListener('fetch', async (event: FetchEvent) => {
|
addEventListener('fetch', (event: FetchEvent) => {
|
||||||
try {
|
try {
|
||||||
event.respondWith(cacheWrapper(event));
|
event.respondWith(cacheWrapper(event));
|
||||||
} catch (e: unknown) {
|
} catch (e: unknown) {
|
||||||
let error = e as Error;
|
let error = e as Error;
|
||||||
if (typeof EXCEPTION_DISCORD_WEBHOOK !== 'undefined') {
|
if (typeof EXCEPTION_DISCORD_WEBHOOK !== 'undefined') {
|
||||||
try {
|
try {
|
||||||
const a = await fetch(EXCEPTION_DISCORD_WEBHOOK, {
|
fetch(EXCEPTION_DISCORD_WEBHOOK, {
|
||||||
method: 'POST',
|
method: 'POST',
|
||||||
headers: {
|
headers: {
|
||||||
'Content-Type': 'application/json',
|
'Content-Type': 'application/json',
|
||||||
|
|
|
@ -96,10 +96,10 @@ export const handleStatus = async (
|
||||||
|
|
||||||
/* Video renderer */
|
/* Video renderer */
|
||||||
if (tweet.media?.video) {
|
if (tweet.media?.video) {
|
||||||
authorText = encodeURIComponent(newText || '');
|
authorText = newText || '';
|
||||||
|
|
||||||
if (tweet?.translation) {
|
if (tweet?.translation) {
|
||||||
authorText = encodeURIComponent(tweet.translation?.text || '');
|
authorText = tweet.translation?.text || '';
|
||||||
}
|
}
|
||||||
|
|
||||||
const { video } = tweet.media;
|
const { video } = tweet.media;
|
||||||
|
@ -235,7 +235,7 @@ ${choice.label} (${choice.percentage}%)
|
||||||
Telegram does not use this. */
|
Telegram does not use this. */
|
||||||
headers.push(
|
headers.push(
|
||||||
`<link rel="alternate" href="${Constants.HOST_URL}/owoembed?text=${encodeURIComponent(
|
`<link rel="alternate" href="${Constants.HOST_URL}/owoembed?text=${encodeURIComponent(
|
||||||
authorText
|
authorText.substr(0, 200)
|
||||||
)}&status=${encodeURIComponent(status)}&author=${encodeURIComponent(
|
)}&status=${encodeURIComponent(status)}&author=${encodeURIComponent(
|
||||||
tweet.author?.screen_name || ''
|
tweet.author?.screen_name || ''
|
||||||
)}" type="application/json+oembed" title="${tweet.author.name}">`
|
)}" type="application/json+oembed" title="${tweet.author.name}">`
|
||||||
|
|
Loading…
Add table
Reference in a new issue