From 4ff74796b15c6e5f72c9bfd3dc2aa966f9e6089e Mon Sep 17 00:00:00 2001 From: leejinho Date: Tue, 17 Dec 2019 08:55:35 +0900 Subject: [PATCH] =?UTF-8?q?=EB=A1=9C=EA=B7=B8=EC=95=84=EC=9B=83=20?= =?UTF-8?q?=ED=8C=9D=EC=97=85=20=EC=98=A4=ED=94=88=20=ED=9B=84=20=EC=B7=A8?= =?UTF-8?q?=EC=86=8C=EC=8B=9C=20=EC=97=90=EB=9F=AC=20=EB=B0=9C=EC=83=9D=20?= =?UTF-8?q?=EC=88=98=EC=A0=95.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../src/app/store/account/authentication/effects.ts | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/projects/ucap-webmessenger-app/src/app/store/account/authentication/effects.ts b/projects/ucap-webmessenger-app/src/app/store/account/authentication/effects.ts index e3a550c8..4ec1c3f2 100644 --- a/projects/ucap-webmessenger-app/src/app/store/account/authentication/effects.ts +++ b/projects/ucap-webmessenger-app/src/app/store/account/authentication/effects.ts @@ -197,7 +197,11 @@ export class Effects { } }); - return result.choice; + if (!!result && !!result.choice && result.choice) { + return true; + } else { + return false; + } } else { return false; }