From 04e7c904077009e247b26b6123859a102ab4a41f Mon Sep 17 00:00:00 2001 From: Klaus Date: Fri, 14 Nov 2025 05:39:56 +0900 Subject: [PATCH] =?UTF-8?q?fix(character):=20isNew=20->=20new=EB=A1=9C=20?= =?UTF-8?q?=EB=B3=80=EA=B2=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../chat/character/controller/ChatCharacterController.kt | 2 +- .../chat/character/service/ChatCharacterService.kt | 8 ++++---- .../chat/original/controller/OriginalWorkController.kt | 2 +- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/src/main/kotlin/kr/co/vividnext/sodalive/chat/character/controller/ChatCharacterController.kt b/src/main/kotlin/kr/co/vividnext/sodalive/chat/character/controller/ChatCharacterController.kt index 055f2f3..a27bdc8 100644 --- a/src/main/kotlin/kr/co/vividnext/sodalive/chat/character/controller/ChatCharacterController.kt +++ b/src/main/kotlin/kr/co/vividnext/sodalive/chat/character/controller/ChatCharacterController.kt @@ -93,7 +93,7 @@ class ChatCharacterController( name = it.name, description = it.description, imageUrl = "$imageHost/${it.imagePath ?: "profile/default-profile.png"}", - isNew = false + new = false ) } ) diff --git a/src/main/kotlin/kr/co/vividnext/sodalive/chat/character/service/ChatCharacterService.kt b/src/main/kotlin/kr/co/vividnext/sodalive/chat/character/service/ChatCharacterService.kt index 79eeacb..faec7b0 100644 --- a/src/main/kotlin/kr/co/vividnext/sodalive/chat/character/service/ChatCharacterService.kt +++ b/src/main/kotlin/kr/co/vividnext/sodalive/chat/character/service/ChatCharacterService.kt @@ -66,7 +66,7 @@ class ChatCharacterService( name = it.name, description = it.description, imageUrl = "$imageHost/${it.imagePath ?: "profile/default-profile.png"}", - isNew = recentSet.contains(it.id) + new = recentSet.contains(it.id) ) } } @@ -102,7 +102,7 @@ class ChatCharacterService( name = it.name, description = it.description, imageUrl = "$imageHost/${it.imagePath ?: "profile/default-profile.png"}", - isNew = recentSet.contains(it.id) + new = recentSet.contains(it.id) ) } } @@ -158,7 +158,7 @@ class ChatCharacterService( name = it.name, description = it.description, imageUrl = "$imageHost/${it.imagePath ?: "profile/default-profile.png"}", - isNew = recentSet.contains(it.id) + new = recentSet.contains(it.id) ) } return RecentCharactersResponse( @@ -189,7 +189,7 @@ class ChatCharacterService( name = it.name, description = it.description, imageUrl = "$imageHost/${it.imagePath ?: "profile/default-profile.png"}", - isNew = recentSet.contains(it.id) + new = recentSet.contains(it.id) ) } diff --git a/src/main/kotlin/kr/co/vividnext/sodalive/chat/original/controller/OriginalWorkController.kt b/src/main/kotlin/kr/co/vividnext/sodalive/chat/original/controller/OriginalWorkController.kt index fab48a6..eb8cbfb 100644 --- a/src/main/kotlin/kr/co/vividnext/sodalive/chat/original/controller/OriginalWorkController.kt +++ b/src/main/kotlin/kr/co/vividnext/sodalive/chat/original/controller/OriginalWorkController.kt @@ -94,7 +94,7 @@ class OriginalWorkController( name = it.name, description = it.description, imageUrl = "$imageHost/$path", - isNew = recentSet.contains(it.id) + new = recentSet.contains(it.id) ) } )