diff options
author | Vincent Ambo <tazjin@tvl.su> | 2024-02-08T20·46+0300 |
---|---|---|
committer | tazjin <tazjin@tvl.su> | 2024-02-08T20·55+0000 |
commit | 5cae0026f517d286497e3329f979250f9391cd05 (patch) | |
tree | 0ad8d06f8a893d2ca8457c22ea0f23ebfbce64fe /users/tazjin | |
parent | b77a103a2ad0768f3892a7e2e38d0e8c79c09034 (diff) |
fix(tazjin/tgsa): fix cloud folder ID for translations r/7484
Change-Id: Icc2fa07902507a9abcf43ab3076419fefac8552d Reviewed-on: https://cl.tvl.fyi/c/depot/+/10749 Tested-by: BuildkiteCI Reviewed-by: tazjin <tazjin@tvl.su>
Diffstat (limited to 'users/tazjin')
-rw-r--r-- | users/tazjin/tgsa/src/translate.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/users/tazjin/tgsa/src/translate.rs b/users/tazjin/tgsa/src/translate.rs index 84c74cc5b36c..35d7b35ca871 100644 --- a/users/tazjin/tgsa/src/translate.rs +++ b/users/tazjin/tgsa/src/translate.rs @@ -155,7 +155,7 @@ fn fetch_iam_token(token: &str) -> Result<String> { pub fn fetch_translation(message: &str) -> Result<String> { let request_body = json!({ - "folderId": "b1gq41rsbggeum4qafnh", + "folderId": "b1g5k8f0tgimg06i6p5h", "texts": [ message ], "targetLanguageCode": "en", }); |