From ae1672d600b817c10c112419cf09ee8b34101c45 Mon Sep 17 00:00:00 2001 From: hjlarry Date: Sun, 8 Jun 2025 17:04:02 +0800 Subject: [PATCH] fix tip --- api/controllers/web/app.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/controllers/web/app.py b/api/controllers/web/app.py index d53d2ec994..7cd9831dac 100644 --- a/api/controllers/web/app.py +++ b/api/controllers/web/app.py @@ -54,7 +54,7 @@ class AppAccessMode(Resource): app_code = args.get("appCode") if not app_id and not app_code: - return {"error": "Missing app_id or app_code in query"}, 400 + return {"error": "Missing appId or appCode in query"}, 400 if app_id: res = EnterpriseService.WebAppAuth.get_app_access_mode_by_id(app_id)