Skip to content

Commit

Permalink
수정
Browse files Browse the repository at this point in the history
  • Loading branch information
JONG-KYEONG committed Nov 29, 2023
1 parent c19d61c commit c95cb54
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,7 @@ public PrUnPostResponse saveAndGetPr(List<PrInfo> prInfos, GithubRepository gith

List<PrPost> pr = prPostRepository.findByRepo(githubRepository.getId());
List<PrPost> unPostedPr = pr.stream()
.filter(prPost -> prPost.getIsPosted().equals(0))
.filter(prPost -> prPost.getIsPosted().equals(false))
.collect(Collectors.toList());

PrUnPostedDtos prUnPostedDtos = new PrUnPostedDtos(unPostedPr);
Expand Down

0 comments on commit c95cb54

Please sign in to comment.