Skip to content

Commit

Permalink
Merge pull request #167 from BETTER-iTER/feature/166
Browse files Browse the repository at this point in the history
[feature/166]: follow 로직 수정
  • Loading branch information
luke0408 authored Feb 14, 2024
2 parents e1ce348 + b22ddfb commit 90a4e80
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ public class FollowConverter {

public static Follow toFollowing(Users user, Users targetUser) {
return Follow.builder()
.followee(user)
.follower(targetUser)
.followee(targetUser)
.follower(user)
.build();
}

Expand Down

0 comments on commit 90a4e80

Please sign in to comment.