From 723aa5372434821d57e54358f524edbc70d55603 Mon Sep 17 00:00:00 2001 From: kimtaehoonDev Date: Wed, 14 Dec 2022 16:54:41 +0900 Subject: [PATCH] =?UTF-8?q?fix(BE):=20=EA=B8=80=EC=9D=84=20=EC=9E=91?= =?UTF-8?q?=EC=84=B1=ED=95=9C=20=EB=92=A4=20=EC=83=88=EB=A1=9C=EA=B3=A0?= =?UTF-8?q?=EC=B9=A8=EC=9D=B4=20=EB=90=98=EC=A7=80=20=EC=95=8A=EB=8A=94=20?= =?UTF-8?q?=EC=9D=B4=EC=8A=88=20(#432)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- server/src/domain/post/post.service.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/src/domain/post/post.service.ts b/server/src/domain/post/post.service.ts index b451418a..712afc43 100644 --- a/server/src/domain/post/post.service.ts +++ b/server/src/domain/post/post.service.ts @@ -63,7 +63,7 @@ export class PostService { postEntity.userNickname = userEntity.nickname; postEntity = await this.postRepository.save(postEntity); - this.postSearchService.indexPost(postEntity, tags); + await this.postSearchService.indexPost(postEntity, tags); return postEntity.id; }