Skip to content

Commit

Permalink
fix: 오타 수정 (#207)
Browse files Browse the repository at this point in the history
  • Loading branch information
gunom authored Jan 8, 2024
2 parents 8b2f75c + 83a142b commit d7bd22a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ public Page<Friend> findAllFriendsByFriendship(Long userId, Integer lowerLimit,
.map(Entry::getKey)
.toList();

return friendRepository.findAllByUserIdAndFriendUserIdInOOrderByPokeCount(userId, friendIds, pageable);
return friendRepository.findAllByUserIdAndFriendUserIdInOrderByPokeCount(userId, friendIds, pageable);
}


Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,5 +30,5 @@ public interface FriendRepository extends JpaRepository<Friend, Long>, FriendCus

List<Friend> findAllByUserIdAndFriendUserIdIn(Long userId, List<Long> friendIdsPokeMe);

Page<Friend> findAllByUserIdAndFriendUserIdInOOrderByPokeCount(Long userId, List<Long> friendIdsPokeMe, Pageable pageable);
Page<Friend> findAllByUserIdAndFriendUserIdInOrderByPokeCount(Long userId, List<Long> friendIdsPokeMe, Pageable pageable);
}

0 comments on commit d7bd22a

Please sign in to comment.