From a750a91f7b81f50177fb03b3df351b2086f4819e Mon Sep 17 00:00:00 2001 From: shahaibo <1023316923@qq.com> Date: Thu, 12 Jun 2025 15:59:15 +0800 Subject: [PATCH] =?UTF-8?q?BUGFIX:=20=E5=88=9B=E5=BB=BA=E9=A1=B9=E7=9B=AE;?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/main/java/com/ai/da/service/impl/LLMServiceImpl.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/com/ai/da/service/impl/LLMServiceImpl.java b/src/main/java/com/ai/da/service/impl/LLMServiceImpl.java index 9f11b7ea..75111708 100644 --- a/src/main/java/com/ai/da/service/impl/LLMServiceImpl.java +++ b/src/main/java/com/ai/da/service/impl/LLMServiceImpl.java @@ -410,7 +410,7 @@ public class LLMServiceImpl implements LLMService { if (StringUtils.isEmpty(ageGroup)) { workspace.setAgeGroup("Adult"); }else { - if (AgeGroup.isValidName(process)) { + if (AgeGroup.isValidName(ageGroup)) { workspace.setAgeGroup(ageGroup); }else { workspace.setAgeGroup("Adult");