Skip to content

Commit b73fa60

Browse files
committed
[FIX] #50 스터디룸 인원수 로직 수정
1 parent d7c85dc commit b73fa60

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/main/java/com/example/be/web/controller/OpenviduController.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ public ResponseEntity<String> receiveWebhook(@RequestHeader("Authorization") Str
7171
Room newRoom = Room.builder()
7272
.title(roomName)
7373
.createDate(createAt)
74-
.participantCount(roomParticipantCount)
74+
.participantCount(1)
7575
.maxParticipants(10) // 기본값 설정
7676
.build();
7777
roomRepository.save(newRoom);

0 commit comments

Comments
 (0)