Skip to content

Commit

Permalink
hotfix: add missing parameter
Browse files Browse the repository at this point in the history
  • Loading branch information
CChuYong committed Dec 14, 2023
1 parent 1e03ab5 commit 1919bbe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion post/src/main/java/com/oing/controller/PostController.java
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ public PreSignedUrlResponse requestPresignedUrl(Long memberId, String imageName)
}

@Override
public PaginationResponse<PostResponse> fetchDailyFeeds(Integer page, Integer size, LocalDate date, String memberId) {
public PaginationResponse<PostResponse> fetchDailyFeeds(Integer page, Integer size, LocalDate date, String memberId, String sort) {
if (page > 5) return new PaginationResponse<>(page, 5, size, false, List.of());
if(memberId != null) {
return new PaginationResponse<>(page, 5, size, false, List.of(
Expand Down

0 comments on commit 1919bbe

Please sign in to comment.