From 1115e444cc74892b4d06c7bfb234346ac390d13b Mon Sep 17 00:00:00 2001 From: yumoqing Date: Thu, 14 Aug 2025 15:28:02 +0800 Subject: [PATCH] bugfix --- uapi/appapi.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/uapi/appapi.py b/uapi/appapi.py index a6cf992..858c1ca 100644 --- a/uapi/appapi.py +++ b/uapi/appapi.py @@ -61,7 +61,7 @@ def deerer(myappid, apikey, secretkey): txt = f'{t}:{apikey}' k = secretkey.encode('utf-8') cyber = aes_encrypt_ecb(k, txt) - return f'Deerer {appid}-:-{cyber}' + return f'Deerer {myappid}-:-{cyber}' def bearer(apikey): return f'Bearer {apikey}'