diff --git a/src/domain/blurting/blurting.service.ts b/src/domain/blurting/blurting.service.ts index db121b4..7418138 100644 --- a/src/domain/blurting/blurting.service.ts +++ b/src/domain/blurting/blurting.service.ts @@ -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 }; }