Skip to content

Commit be55173

Browse files
committed
fix: merge중 에러 수정
- } 빠져있던거 수정
1 parent ac9a854 commit be55173

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/main/java/org/dfbf/soundlink/domain/chat/service/ChatRoomService.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,10 +90,11 @@ public ResponseResult deleteRequestFromRedis(Long requestUserId, Long emotionRec
9090
return new ResponseResult(ErrorCode.FAIL_TO_FIND_EMOTION_RECORD);
9191
} catch (Exception e) {
9292
return new ResponseResult(400, "Chat request failed.");
93+
}
9394
}
9495

9596
@Transactional
96-
public ResponseResult createChatRoom(@AuthenticationPrincipal Long userId, Long recordId){
97+
public ResponseResult createChatRoom(Long userId, Long recordId) {
9798
try {
9899
// 요청 보내는사람
99100
User requestUserId = userRepository.findById(userId)

0 commit comments

Comments
 (0)