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 버그 픽스 (#239)
Browse files Browse the repository at this point in the history
## 요약
[BugFix] 팔로워 목록에서 isFollow = true 버그 픽스
<br><br>

## 작업 내용
[BugFix] 팔로워 목록에서 isFollow = true 버그 픽스
<br><br>

## 참고 사항

<br><br>

## 관련 이슈

- Close #이슈번호

<br><br>
  • Loading branch information
JangYouJung committed Feb 16, 2024
2 parents cf646f4 + 33309d7 commit 1e4dfbb
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 1e4dfbb

Please sign in to comment.