From 949486c447564282b66e6654993752d5f7c6ddfe Mon Sep 17 00:00:00 2001 From: misyaguziya <53165965+misyaguziya@users.noreply.github.com> Date: Thu, 15 May 2025 13:06:29 +0900 Subject: [PATCH] [bugfix] Correct DeepL authentication error messages for clarity --- src-python/controller.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src-python/controller.py b/src-python/controller.py index cdc1b037..16c2f53f 100644 --- a/src-python/controller.py +++ b/src-python/controller.py @@ -1172,7 +1172,7 @@ class Controller: response = { "status":400, "result":{ - "message":"DeepL auth key length is not correct", + "message":"Authentication failure of deepL auth key", "data": config.AUTH_KEYS[translator_name] } } @@ -1180,7 +1180,7 @@ class Controller: response = { "status":400, "result":{ - "message":"Authentication failure of deepL auth key", + "message":"DeepL auth key length is not correct", "data": config.AUTH_KEYS[translator_name] } }