From b102241efd757371192a900211797e4f17c38970 Mon Sep 17 00:00:00 2001 From: Klaus Date: Mon, 19 May 2025 15:25:17 +0900 Subject: [PATCH] =?UTF-8?q?fix:=20=EC=9C=A0=EC=A0=80=20=ED=96=89=EB=8F=99?= =?UTF-8?q?=20=EB=8D=B0=EC=9D=B4=ED=84=B0=20-=20commentId=20->=20contentCo?= =?UTF-8?q?mmentId=20=EB=A1=9C=20=EB=B3=80=EA=B2=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../sodalive/content/comment/AudioContentCommentController.kt | 4 ++-- .../kr/co/vividnext/sodalive/useraction/UserActionService.kt | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/main/kotlin/kr/co/vividnext/sodalive/content/comment/AudioContentCommentController.kt b/src/main/kotlin/kr/co/vividnext/sodalive/content/comment/AudioContentCommentController.kt index 6adb6cc..f603fd7 100644 --- a/src/main/kotlin/kr/co/vividnext/sodalive/content/comment/AudioContentCommentController.kt +++ b/src/main/kotlin/kr/co/vividnext/sodalive/content/comment/AudioContentCommentController.kt @@ -44,7 +44,7 @@ class AudioContentCommentController( userActionService.recordAction( memberId = member.id!!, actionType = ActionType.CONTENT_COMMENT, - commentId = commentId, + contentCommentId = commentId, pushTokenList = pushTokenList ) @@ -52,7 +52,7 @@ class AudioContentCommentController( memberId = member.id!!, actionType = ActionType.ORDER_CONTENT_COMMENT, contentId = request.contentId, - commentId = commentId, + contentCommentId = commentId, pushTokenList = pushTokenList ) } catch (_: Exception) { diff --git a/src/main/kotlin/kr/co/vividnext/sodalive/useraction/UserActionService.kt b/src/main/kotlin/kr/co/vividnext/sodalive/useraction/UserActionService.kt index a0e92f5..4ef7092 100644 --- a/src/main/kotlin/kr/co/vividnext/sodalive/useraction/UserActionService.kt +++ b/src/main/kotlin/kr/co/vividnext/sodalive/useraction/UserActionService.kt @@ -33,7 +33,7 @@ class UserActionService( memberId: Long, actionType: ActionType, contentId: Long? = null, - commentId: Long? = null, + contentCommentId: Long? = null, pushTokenList: List = emptyList() ) { coroutineScope.launch { @@ -43,7 +43,7 @@ class UserActionService( UserActionLog( memberId = memberId, actionType = actionType, - commentId = commentId + contentCommentId = contentCommentId ) ) repository.flush()