From 3d67ac71f33d9200c6251e89092bbb0244b42309 Mon Sep 17 00:00:00 2001 From: xupei Date: Fri, 10 Oct 2025 13:26:13 +0800 Subject: [PATCH] =?UTF-8?q?BUGFIX:moodboard=E6=97=A0=E6=B3=95=E5=AE=8C?= =?UTF-8?q?=E5=85=A8=E5=88=A0=E9=99=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../java/com/ai/da/service/impl/UserLikeGroupServiceImpl.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/com/ai/da/service/impl/UserLikeGroupServiceImpl.java b/src/main/java/com/ai/da/service/impl/UserLikeGroupServiceImpl.java index 297a31ce..e4090493 100644 --- a/src/main/java/com/ai/da/service/impl/UserLikeGroupServiceImpl.java +++ b/src/main/java/com/ai/da/service/impl/UserLikeGroupServiceImpl.java @@ -2553,7 +2553,7 @@ public class UserLikeGroupServiceImpl extends ServiceImpl moodBoards = moodBoard.getMoodBoards(); - if (CollectionUtil.isNotEmpty(moodBoards)) { + if (Objects.nonNull(moodBoards)) { QueryWrapper qw = new QueryWrapper<>(); qw.lambda().eq(CollectionElement::getProjectId, projectId); qw.lambda().eq(CollectionElement::getLevel1Type, CollectionLevel1TypeEnum.MOOD_BOARD.getRealName());