Skip to content

Commit

Permalink
add 매칭실패
Browse files Browse the repository at this point in the history
  • Loading branch information
overthestream committed Aug 25, 2024
1 parent 8412641 commit 2044b61
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions src/domain/blurting/blurting.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -548,6 +548,14 @@ export class BlurtingService {
};
}),
);
if (!matching) {
const images = await this.userService.getUserImages(sendArrow.to.id);
const user = await this.userService.getUserProfile(
sendArrow.to.id,
images,
);
return { matching, matchedWith: user, iReceived: receiveDto };
}

return { matching, matchedWith, iReceived: receiveDto };
}
Expand Down

0 comments on commit 2044b61

Please sign in to comment.