Skip to content
This repository has been archived by the owner on May 14, 2024. It is now read-only.

Commit

Permalink
[BugFix] 팔로워 목록에서 isFollow = true 버그 픽스
Browse files Browse the repository at this point in the history
  • Loading branch information
JangYouJung committed Feb 16, 2024
1 parent f4f8833 commit 33309d7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/follow/follow.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ export class FollowService {
followDto.mateId = mateEntity.id;
followDto.email = mateEntity.email;
followDto.introduction = mateEntity.introduction;
followDto.isFollowing = !!follow.id;
followDto.isFollowing = await this.userService.checkIfFollowing(user,mateEntity.id);

// 사용자 프로필 이미지
const image = await this.userService.getProfileImage(mateEntity.id);
Expand Down

0 comments on commit 33309d7

Please sign in to comment.