From beca5f30e7d1961a745d2f28c09fb4b29358ceb3 Mon Sep 17 00:00:00 2001 From: dangered wolf Date: Tue, 2 Aug 2022 07:14:42 -0700 Subject: [PATCH] Fix #16 --- src/api.ts | 2 +- src/server.ts | 4 ++-- src/status.ts | 6 +++--- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/src/api.ts b/src/api.ts index 4c76b2f..39292dc 100644 --- a/src/api.ts +++ b/src/api.ts @@ -129,7 +129,7 @@ const populateTweetProperties = async ( ); if (translateAPI !== null && translateAPI?.translation) { apiTweet.translation = { - text: translateAPI?.translation || '', + text: linkFixer(tweet, translateAPI?.translation || ''), source_lang: translateAPI?.sourceLanguage || '', target_lang: translateAPI?.destinationLanguage || '' }; diff --git a/src/server.ts b/src/server.ts index e1e05c2..65c7b8f 100644 --- a/src/server.ts +++ b/src/server.ts @@ -217,14 +217,14 @@ const cacheWrapper = async (event: FetchEvent): Promise => { /* Event to receive web requests on Cloudflare Worker */ -addEventListener('fetch', async (event: FetchEvent) => { +addEventListener('fetch', (event: FetchEvent) => { try { event.respondWith(cacheWrapper(event)); } catch (e: unknown) { let error = e as Error; if (typeof EXCEPTION_DISCORD_WEBHOOK !== 'undefined') { try { - const a = await fetch(EXCEPTION_DISCORD_WEBHOOK, { + fetch(EXCEPTION_DISCORD_WEBHOOK, { method: 'POST', headers: { 'Content-Type': 'application/json', diff --git a/src/status.ts b/src/status.ts index d366852..2cd8572 100644 --- a/src/status.ts +++ b/src/status.ts @@ -96,10 +96,10 @@ export const handleStatus = async ( /* Video renderer */ if (tweet.media?.video) { - authorText = encodeURIComponent(newText || ''); + authorText = newText || ''; if (tweet?.translation) { - authorText = encodeURIComponent(tweet.translation?.text || ''); + authorText = tweet.translation?.text || ''; } const { video } = tweet.media; @@ -235,7 +235,7 @@ ${choice.label}  (${choice.percentage}%) Telegram does not use this. */ headers.push( ``