Skip to content

Commit

Permalink
Merge pull request #67 from kookmin-sw/refactor/messagepage
Browse files Browse the repository at this point in the history
Refactor: MessageSize 수정
  • Loading branch information
imjanghyeok authored May 11, 2024
2 parents 4f723e3 + effaa33 commit 3c6a257
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -255,7 +255,7 @@ public String exitApplication(Long memberId) {

public List<MessageListResponse> getMessagePage(Long roomId, Long memberId, int pageNo) {
pageNo = pageNo - 1;
int pageSize = 20;
int pageSize = 40;
Sort sort = Sort.by(Sort.Direction.DESC, "sendTime");
Pageable pageable = PageRequest.of(pageNo, pageSize, sort);
String chatRoomInfoId = roomId + "/member/" + memberId;
Expand Down

0 comments on commit 3c6a257

Please sign in to comment.