From 8dc2c433e4ec71bda47234262c18503a0a76218c Mon Sep 17 00:00:00 2001 From: dangered wolf Date: Mon, 25 Jul 2022 23:51:28 -0400 Subject: [PATCH] Fixed bug where en would get translated to en --- src/api.ts | 2 +- wrangler.example.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/api.ts b/src/api.ts index b6087f0..94571cd 100644 --- a/src/api.ts +++ b/src/api.ts @@ -34,7 +34,7 @@ const processMedia = (media: TweetMedia): APIPhoto | APIVideo | null => { const populateTweetProperties = async ( tweet: TweetPartial, conversation: TimelineBlobPartial, - language: string = 'en' + language: string ): Promise => { let apiTweet = {} as APITweet; diff --git a/wrangler.example.toml b/wrangler.example.toml index 094b2d5..e2a10f0 100644 --- a/wrangler.example.toml +++ b/wrangler.example.toml @@ -2,7 +2,7 @@ name = "fixtweet" account_id = "[CLOUDFLARE_ACCOUNT_ID]" workers_dev = true main = "./dist/worker.js" -compatibility_date = "2022-07-13" +compatibility_date = "2022-07-25" send_metrics = false [build]