diff --git a/src/main/kotlin/gogo/gogostage/domain/community/root/application/CommunityProcessor.kt b/src/main/kotlin/gogo/gogostage/domain/community/root/application/CommunityProcessor.kt index 591d079..0496f8f 100644 --- a/src/main/kotlin/gogo/gogostage/domain/community/root/application/CommunityProcessor.kt +++ b/src/main/kotlin/gogo/gogostage/domain/community/root/application/CommunityProcessor.kt @@ -144,7 +144,7 @@ class CommunityProcessor( if (!boardViewRepository.existsByBoardIdAndStudentId(board.id, board.studentId)) { val newBoardView = BoardView( board = board, - studentId = board.studentId, + studentId = event.studentId, ) boardViewRepository.save(newBoardView)