Skip to content

Commit

Permalink
fix: 게시글 업로드 버그 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
bngsh committed Nov 15, 2023
1 parent b61c771 commit b69a0b4
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,7 @@ public List<PostDto> findMyPosts(Long viewerId, Integer pagingSize, Integer pagi
public Long findPostId(String photo, String date) {
return queryFactory
.select(post.postId)
.from(post)
.where(post.photo.eq(photo).and(post.date.eq(date)))
.fetchOne();
}
Expand Down

0 comments on commit b69a0b4

Please sign in to comment.